Update quilt.mod.json

This commit is contained in:
Alexey Belyaev 2022-04-20 22:38:02 +05:00 committed by GitHub
parent e7f3fd5a55
commit 6c54b35946
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,42 +1,42 @@
{ {
"schema_version": 1, "schema_version": 1,
"quilt_loader": { "quilt_loader": {
"group": "${maven_group}", "group": "${maven_group}",
"id": "examplemod", "id": "examplemod",
"version": "${version}", "version": "${version}",
"metadata": { "metadata": {
"name": "Mod Name", "name": "Mod Name",
"description": "A short description of your mod.", "description": "A short description of your mod.",
"contributors": { "contributors": {
"Me!": "Owner" "Me!": "Owner"
}, },
"icon": "assets/examplemod/icon.png" "icon": "assets/examplemod/icon.png"
}, },
"intermediate_mappings": "net.fabricmc:intermediary", "intermediate_mappings": "net.fabricmc:intermediary",
"entrypoints": { "entrypoints": {
"init": [ "init": [
"com.examplemod.ExampleMod" "com.examplemod.ExampleMod"
] ]
}, },
"depends": [ "depends": [
{ {
"id": "quilt_loader", "id": "quilt_loader",
"versions": ">=${loader_version}" "versions": ">=${loader_version}"
}, },
{ {
"id": "quilted_fabric_api", "id": "quilted_fabric_api",
"versions": "${quilted_fabric_api_version}" "versions": "${quilted_fabric_api_version}"
}, },
{ {
"id": "minecraft", "id": "minecraft",
"versions": ">=${minecraft_version}" "versions": ">=${minecraft_version}"
} }
] ]
}, },
"mixin": [ "mixin": [
"examplemod.mixins.json" "examplemod.mixins.json"
], ],
"minecraft": { "minecraft": {
"environment": "*" "environment": "*"
} }
} }