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

38 lines
688 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.7.4",
"fabric": "*",
2020-06-24 12:22:38 -04:00
"minecraft": "1.16.x"
2018-12-12 14:48:51 -05:00
},
2019-04-07 13:39:49 -04:00
"suggests": {
"flamingo": "*"
2018-11-03 18:22:32 -04:00
}
2018-12-12 21:18:40 -05:00
}