quilt-template-mod/src/main/resources/quilt.mod.json

36 lines
688 B
JSON
Raw Normal View History

2022-04-20 17:09:40 +00:00
{
"schema_version": 1,
"quilt_loader": {
2022-04-20 22:21:17 +00:00
"group": "com.example",
2022-04-20 19:02:00 +00:00
"id": "example_mod",
2022-04-20 17:09:40 +00:00
"version": "${version}",
"metadata": {
"name": "Mod Name",
"description": "A short description of your mod.",
"contributors": {
"Me!": "Owner"
},
2022-04-20 19:02:00 +00:00
"icon": "assets/example_mod/icon.png"
2022-04-20 17:09:40 +00:00
},
"intermediate_mappings": "net.fabricmc:intermediary",
"entrypoints": {
2022-04-20 19:02:00 +00:00
"init": "com.example.example_mod.ExampleMod"
2022-04-20 17:09:40 +00:00
},
"depends": [
{
"id": "quilt_loader",
2022-04-20 19:02:00 +00:00
"versions": ">=0.16.0-"
2022-04-20 17:09:40 +00:00
},
{
"id": "quilted_fabric_api",
2022-04-20 19:02:00 +00:00
"versions": ">=1.0.0-"
2022-04-20 17:09:40 +00:00
},
{
"id": "minecraft",
2022-04-20 19:02:00 +00:00
"versions": ">=1.18.2"
2022-04-20 17:09:40 +00:00
}
]
},
2022-04-20 19:02:00 +00:00
"mixin": "example_mod.mixins.json"
2022-04-20 17:09:40 +00:00
}