mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-21 16:00:59 -05:00
Added example of quilt.mod.json
This commit is contained in:
parent
fec83e6fd7
commit
45b72c7493
1 changed files with 83 additions and 0 deletions
83
tests/content/quilt/quilt.mod.json
Normal file
83
tests/content/quilt/quilt.mod.json
Normal file
|
@ -0,0 +1,83 @@
|
|||
{
|
||||
"schema_version": 1,
|
||||
"quilt_loader": {
|
||||
"group": "com.example",
|
||||
"id": "example-mod",
|
||||
"version": "0.1.0",
|
||||
"metadata": {
|
||||
"name": "Example Mod",
|
||||
"description": "Description",
|
||||
"contributors": {
|
||||
"Author": "Owner"
|
||||
},
|
||||
"contact": {
|
||||
"homepage": "https://github.com/",
|
||||
"issues": "https://github.com/",
|
||||
"sources": "https://github.com/"
|
||||
},
|
||||
"license": "MIT",
|
||||
"icon": "assets/example-mod/icon.png"
|
||||
},
|
||||
"intermediate_mappings": "net.fabricmc:intermediary",
|
||||
"entrypoints": {
|
||||
"main": "example.ExampleMod"
|
||||
},
|
||||
|
||||
"depends": [
|
||||
{
|
||||
"id": "quilt_loader",
|
||||
"versions": ">=0.11.3"
|
||||
},
|
||||
{
|
||||
"id": "quilted_fabric_api",
|
||||
"versions": ">=0.40.0"
|
||||
},
|
||||
{
|
||||
"id": "minecraft",
|
||||
"versions": [
|
||||
"1.17",
|
||||
"1.17.1"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "java",
|
||||
"versions": ">=16"
|
||||
},
|
||||
{
|
||||
"id": "suggested-mod",
|
||||
"optional": true,
|
||||
"mc-publish": {
|
||||
"modrinth": "BBBB",
|
||||
"curseforge": 43,
|
||||
"github": "v0.3.0",
|
||||
"ignore": ["curseforge"]
|
||||
}
|
||||
}
|
||||
],
|
||||
"provides": [
|
||||
"included:included-mod"
|
||||
],
|
||||
"breaks": [
|
||||
"breaking-mod",
|
||||
{
|
||||
"id": "conflicting:conflicting-mod",
|
||||
"versions": "<0.40.0",
|
||||
"unless": "fix-conflicting-mod"
|
||||
}
|
||||
]
|
||||
|
||||
},
|
||||
"minecraft": {
|
||||
"environment": "*"
|
||||
},
|
||||
"mc-publish": {
|
||||
"github": "mc1.18-0.4.0-alpha5",
|
||||
"curseforge": 394468,
|
||||
"modrinth": "AANobbMI",
|
||||
|
||||
"loaders": ["quilt", "fabric"],
|
||||
"dependencies": [
|
||||
"recommended-mod@0.2.0(recommended){modrinth:AAAA}{curseforge:42}{github:v0.2.0}#(ignore)"
|
||||
]
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue