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

39 lines
712 B
JSON
Raw Normal View History

2018-11-03 18:22:32 -04:00
{
2019-04-07 13:39:49 -04:00
"schemaVersion": 1,
2018-11-03 18:22:32 -04:00
"id": "modid",
2019-04-07 13:39:49 -04:00
"version": "${version}",
2018-11-03 18:22:32 -04:00
"name": "Example Mod",
2018-12-12 21:18:40 -05:00
"description": "This is an example description! Tell everyone what your mod is about!",
2019-04-07 13:39:49 -04:00
"authors": [
"Me!"
],
"contact": {
"homepage": "https://fabricmc.net/",
"sources": "https://github.com/FabricMC/fabric-example-mod"
},
"license": "CC0-1.0",
"icon": "assets/modid/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"net.fabricmc.example.ExampleMod"
]
},
"mixins": [
"modid.mixins.json"
],
2019-04-07 13:39:49 -04:00
2019-05-27 16:04:51 -04:00
"depends": {
"fabricloader": ">=0.11.3",
"fabric": "*",
2021-11-16 14:30:30 -05:00
"minecraft": "1.18.x",
"java": ">=17"
2018-12-12 14:48:51 -05:00
},
2019-04-07 13:39:49 -04:00
"suggests": {
"another-mod": "*"
2018-11-03 18:22:32 -04:00
}
2018-12-12 21:18:40 -05:00
}