fabric.mod.json 971 Bytes
Newer Older
Adrian Siekierka committed
1
{
modmuss committed
2
	"schemaVersion": 1,
3
	"id": "creaturechat",
modmuss committed
4
	"version": "${version}",
5 6
	"name": "CreatureChat",
	"description": "Chat, befriend, and interact with a rich world of creatures like never before! All creatures can talk and respond naturally using AI.",
modmuss committed
7
	"authors": [
8
		"Jonathan Thomas <jonathan@openshot.org>",
9
		"owlmaddie <owlmaddie@gmail.com>"
modmuss committed
10 11
	],
	"contact": {
12
		"homepage": "http://discord.creaturechat.com",
13
		"sources": "http://gitlab.openshot.org/minecraft/creature-chat"
modmuss committed
14
	},
15
	"license": "GPLv3",
16
	"icon": "assets/creaturechat/icon.png",
modmuss committed
17 18 19
	"environment": "*",
	"entrypoints": {
		"main": [
20
			"com.owlmaddie.ModInit"
modmuss committed
21 22
		],
		"client": [
23
			"com.owlmaddie.ClientInit"
modmuss committed
24 25 26
		]
	},
	"mixins": [
27
		"creaturechat.mixins.json",
modmuss committed
28
		{
29
			"config": "creaturechat.client.mixins.json",
modmuss committed
30 31 32
			"environment": "client"
		}
	],
33
	"accessWidener": "creaturechat.accesswidener",
modmuss committed
34
	"depends": {
modmuss50 committed
35
		"fabricloader": ">=0.14.22",
36
		"minecraft": "~1.20.4",
modmuss committed
37 38 39
		"java": ">=17",
		"fabric-api": "*"
	}
modmuss50 committed
40
}