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

38 lines
713 B
JSON

{
"schemaVersion": 1,
"id": "cherry",
"version": "${version}",
"name": "Cherry",
"description": "This mod adds a bunch of different tree's, and their respective variants",
"authors": [
"Ganku (Code), yurisuika (Textures)"
],
"contact": {
"homepage": "https://fabricmc.net/",
"sources": "https://github.com/FabricMC/fabric-example-mod"
},
"license": "MIT",
"icon": "assets/cherry/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"net.parsell.cherry.Cherry"
]
},
"mixins": [
"cherry.mixins.json"
],
"depends": {
"fabricloader": ">=0.7.4",
"fabric": "*",
"minecraft": "1.16.x"
},
"suggests": {
"another-mod": "*"
}
}