summaryrefslogtreecommitdiffstats
path: root/src/main/resources/fabric.mod.json
blob: a0c0314dd4c91a7128324c8f697131b9d8228f3b (plain) (blame)
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
{
	"schemaVersion": 1,
	"id": "craftsdwarfship",
	"version": "${version}",
	"name": "Craftsdwarfship",
	"description": "Adds some mechanics (that make sense) from Dwarf Fortress to Minecraft.",
	"authors": [
		"Hawarth"
	],
	"contact": {
		"homepage": "https://hawarth.com/",
		"sources": "https://git.hawarth.com/mc-craftsdwarfship/"
	},
	"license": "GNU GPLv3",
	"icon": "assets/craftsdwarfship/icon.png",
	"environment": "*",
	"entrypoints": {
		"main": [
			"com.hawarth.Craftsdwarfship"
		],
		"client": [
			"com.hawarth.CraftsdwarfshipClient"
		],
		"fabric-datagen": [
			"com.hawarth.CraftsdwarfshipDataGenerator"
		]
	},
	"mixins": [
		"craftsdwarfship.mixins.json",
		{
			"config": "craftsdwarfship.client.mixins.json",
			"environment": "client"
		}
	],
	"depends": {
		"fabricloader": ">=0.18.4",
		"minecraft": "~1.21.11",
		"java": ">=21",
		"fabric-api": "*"
	}
}