aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/fabric.mod.json
blob: 05faf69582bf7fa1e58e14b8192bd37989520e1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
  "schemaVersion": 1,
  "id": "libgui",
  "version": "${version}",

  "name": "LibGui",
  "description": "Easy grid-based GUIs for Fabric",
  "authors": [
    "Falkreon"
  ],
  "contact": {
    "sources": "https://github.com/CottonMC/LibGUI"
  },

  "license": "MIT",
  "icon": "assets/libgui/icon.png",

  "environment": "*",
  "entrypoints": {
    "client": [
      "io.github.cottonmc.cotton.gui.client.LibGuiClient"
    ]
  },
  "depends": {
    "fabricloader": ">=0.4.0",
    "fabric": "*"
  },
  "suggests": {
    "flamingo": "*"
  },

  "custom": {
  	"modmenu:api": true,
  	"modmenu:clientsideOnly": false
  }
}