36 lines
815 B
JSON
36 lines
815 B
JSON
{
|
|
"schemaVersion": 1,
|
|
"id": "${mod_id}",
|
|
"version": "${version}",
|
|
"name": "${mod_name}",
|
|
"description": "${description}",
|
|
"authors": [
|
|
"${mod_author}"
|
|
],
|
|
"contact": {
|
|
"homepage": "https://fabricmc.net/",
|
|
"sources": "https://github.com/FabricMC/fabric-example-mod"
|
|
},
|
|
"license": "${license}",
|
|
"icon": "assets/${mod_id}/${mod_id}.png",
|
|
"environment": "*",
|
|
"entrypoints": {
|
|
"main": [
|
|
"com.example.examplemod.ExampleMod"
|
|
]
|
|
},
|
|
"mixins": [
|
|
"${mod_id}.mixins.json",
|
|
"${mod_id}.fabric.mixins.json"
|
|
],
|
|
"depends": {
|
|
"fabricloader": ">=0.14",
|
|
"fabric": "*",
|
|
"minecraft": "1.20.2",
|
|
"java": ">=17"
|
|
},
|
|
"suggests": {
|
|
"another-mod": "*"
|
|
}
|
|
}
|
|
|