Files
GTAMFMD/src/main/resources/fabric.mod.json
Jottyfan d7c85d04bb
Some checks failed
build / build (push) Has been cancelled
upgrade to 1.21.11
2026-01-24 14:32:08 +01:00

37 lines
780 B
JSON

{
"schemaVersion": 1,
"id": "gtamfmd",
"version": "${version}",
"name": "gtamfmd",
"description": "An exmaple mod for the Minecraf Fabric Mod Development GTA",
"authors": [
"Jotty"
],
"contact": {
"homepage": "https://git.jottyfan.de/GTA_Minecraft_Fabric_Mod_Development",
"sources": "https://git.jottyfan.de/GTA_Minecraft_Fabric_Mod_Development/GTAMFMD"
},
"license": "AGPL-3",
"icon": "assets/gtamfmd/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"de.jottyfan.minecraft.Gtamfmd"
],
"client": [
"de.jottyfan.minecraft.GtamfmdClient"
]
},
"mixins": [
"gtamfmd.mixins.json"
],
"depends": {
"fabricloader": ">=0.18.4",
"minecraft": "~1.21.11",
"java": ">=21",
"fabric-api": "*"
},
"suggests": {
"another-mod": "*"
}
}