42 lines
924 B
JSON
42 lines
924 B
JSON
{
|
|
"schemaVersion": 1,
|
|
"id": "scorched_earth",
|
|
"version": "${version}",
|
|
"name": "Scorched Earth",
|
|
"description": "This is an example description! Tell everyone what your mod is about!",
|
|
"authors": [
|
|
"Me!"
|
|
],
|
|
"contact": {
|
|
"homepage": "https://fabricmc.net/",
|
|
"sources": "https://github.com/FabricMC/fabric-example-mod"
|
|
},
|
|
"license": "CC0-1.0",
|
|
"icon": "assets/scorched_earth/icon.png",
|
|
"environment": "*",
|
|
"entrypoints": {
|
|
"main": [
|
|
"com.smithy.scorched_earth.ScorchedEarth"
|
|
],
|
|
"client": [
|
|
"com.smithy.scorched_earth.ScorchedEarthClient"
|
|
],
|
|
"fabric-datagen": [
|
|
"com.smithy.scorched_earth.ScorchedEarthDataGenerator"
|
|
]
|
|
},
|
|
"mixins": [
|
|
"scorched_earth.mixins.json",
|
|
{
|
|
"config": "scorched_earth.client.mixins.json",
|
|
"environment": "client"
|
|
}
|
|
],
|
|
"depends": {
|
|
"fabricloader": ">=0.16.10",
|
|
"minecraft": "~1.20.1",
|
|
"java": ">=17",
|
|
"fabric-api": "*"
|
|
},
|
|
"suggests": {}
|
|
} |