DynRes/src/main/resources/fabric.mod.json

43 lines
932 B
JSON
Raw Normal View History

2020-09-07 13:29:44 +02:00
{
"schemaVersion": 1,
"id": "dynres",
"version": "${version}",
"name": "DynRes",
"description": "Host resourcepacks directly in-server",
"authors": [
"JFronny"
],
"contact": {
"website": "https://jfronny.gitlab.io",
2021-03-05 07:53:03 +01:00
"repo": "https://www.gitlab.com/jfmods/DynRes"
2020-09-07 13:29:44 +02:00
},
"license": "MIT",
"icon": "assets/dynres/icon.png",
"environment": "*",
2020-09-07 13:29:44 +02:00
"entrypoints": {
"libjf:web": ["io.gitlab.jfronny.dynres.DynRes"],
2021-06-02 13:31:04 +02:00
"client": ["io.gitlab.jfronny.dynres.DebugClient"],
"libjf:config": ["io.gitlab.jfronny.dynres.Cfg"]
2020-09-07 13:29:44 +02:00
},
"mixins": [
2022-07-28 15:51:44 +02:00
"dynres.mixins.json",
{
"config": "dynres.client.mixins.json",
"environment": "client"
}
2020-09-07 13:29:44 +02:00
],
"depends": {
"fabricloader": ">=0.12.0",
2021-07-21 15:37:47 +02:00
"minecraft": "*",
2022-04-03 19:03:21 +02:00
"libjf-config-v0": ">=2.7.0"
},
"custom": {
"libjf": {
"web": true
2022-04-03 19:03:21 +02:00
},
"libjf:config": {
"referencedConfigs": ["libjf-web-v0"]
}
2020-09-07 13:29:44 +02:00
}
}