summaryrefslogtreecommitdiff
path: root/src/main/resources/fabric.mod.json
blob: 4f92431ed38d0dd8e43dbc8241f065d46643c4d3 (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
{
	"schemaVersion": 1,
	"id": "funny-teleporters",
	"version": "${version}",
	"name": "Funny Teleporters",
	"description": "This is an example description! Tell everyone what your mod is about!",
	"authors": [
		"Me!"
	],
	"contact": {
		"homepage": "https://fabricmc.net/",
		"sources": "https://github.com/FabricMC/fabric-example-mod"
	},
	"license": "CC0-1.0",
	"icon": "assets/funny-teleporters/icon.png",
	"environment": "*",
	"entrypoints": {
		"main": [
			"moe.nea.funnyteleporters.FunnyTeleporters"
		],
		"client": [
			"moe.nea.funnyteleporters.FunnyTeleportersClient"
		]
	},
	"mixins": [
		"funny-teleporters.mixins.json",
		{
			"config": "funny-teleporters.client.mixins.json",
			"environment": "client"
		}
	],
	"depends": {
		"fabricloader": ">=0.16.9",
		"minecraft": "~1.21",
		"java": ">=21",
		"fabric-api": "*"
	},
	"suggests": {
		"another-mod": "*"
	}
}