EAA_MOD/src/main/resources/fabric.mod.json

39 lines
692 B
JSON

{
"schemaVersion": 1,
"id": "eaa",
"version": "${version}",
"name": "EAA Mod",
"description": "This is an example description! Tell everyone what your mod is about!",
"authors": [
"MPK1",
"Hiajen"
],
"contact": {
"homepage": "https://fabricmc.net/",
"sources": "https://github.com/FabricMC/fabric-example-mod"
},
"license": "CC0-1.0",
"icon": "assets/eaa/icon.png",
"environment": "*",
"entrypoints": {
"client": [
"net.saltymc.eaa.EaaMod"
]
},
"mixins": [
"eaamod.mixins.json"
],
"depends": {
"fabricloader": ">=0.7.4",
"fabric": "*",
"minecraft": "1.16.x"
},
"suggests": {
"another-mod": "*"
}
}