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

39 lines
692 B
JSON
Raw Normal View History

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