aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/fabric.mod.json
blob: 9a76f2031777ec0f178f0758ebcbc3b0be3d8979 (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
37
38
39
40
41
42
43
44
45
46
{
	"schemaVersion": 1,
	"id": "libgui",
	"version": "${version}",

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

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

	"environment": "*",
	"entrypoints": {
		"main": ["io.github.cottonmc.cotton.gui.impl.LibGuiCommon"],
		"client": ["io.github.cottonmc.cotton.gui.impl.client.LibGuiClient"],
		"modmenu": ["io.github.cottonmc.cotton.gui.impl.modmenu.ModMenuSupport"]
	},
	"mixins": ["mixins.libgui.json"],
	"depends": {
		"java": ">=17",
		"fabricloader": ">=0.14.22",
		"fabric-api-base": ">=0.4.4",
		"fabric-lifecycle-events-v1": "^2.0.2",
		"fabric-networking-api-v1": "^3.0.5",
		"fabric-rendering-v1": "^3.0.6",
		"minecraft": ">=1.20.2",
		"jankson": "^6.0.0",
		"libninepatch": "^1.2.0"
	},
	"suggests": {
		"flamingo": "*"
	},

	"custom": {
		"modmenu": {
			"badges": [ "library" ]
		}
	}
}