minecraft-mod/src/main/resources/fabric.mod.json

42 lines
780 B
JSON

{
"schemaVersion": 1,
"id": "c0defox",
"version": "${version}",
"name": "c0de's client mod",
"description": "Various tweaks and functions to play around with minecraft",
"authors": [
"c0de"
],
"contact": {
"homepage": "https://c0defox.es",
"sources": "https://c0de.dev/c0de/minecraft-mod"
},
"license": "MIT",
"icon": "assets/c0defox/icon.png",
"environment": "client",
"entrypoints": {
"main": [
"dev.c0de.minecraft.c0deFoxMod"
],
"client": [
"dev.c0de.minecraft.client.c0deFoxModClient"
]
},
"mixins": [
"c0defox.mixins.json"
],
"depends": {
"fabricloader": ">=0.14.17",
"fabric-api": "*",
"minecraft": ">=1.19.4",
"java": ">=17"
},
"suggests": {
"another-mod": "*"
}
}