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

40 lines
997 B
JSON
Raw Normal View History

2020-09-07 13:29:44 +02:00
{
"schemaVersion": 1,
"id": "dynres",
"version": "${version}",
"name": "DynRes",
2022-12-02 17:47:39 +01:00
"description": "Host a resource pack directly on your server",
"authors": ["JFronny"],
2020-09-07 13:29:44 +02:00
"contact": {
2022-12-02 17:47:39 +01:00
"email": "projects.contact@frohnmeyer-wds.de",
"homepage": "https://jfronny.gitlab.io",
"issues": "https://git.frohnmeyer-wds.de/JfMods/DynRes/issues",
"sources": "https://git.frohnmeyer-wds.de/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"],
2022-12-29 14:28:23 +01:00
"libjf:config": ["io.gitlab.jfronny.dynres.JFC_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-08-28 13:39:18 +02:00
"libjf-config-core-v1": ">=2.7.0"
},
"custom": {
"libjf": {
"web": true
}
2020-09-07 13:29:44 +02:00
}
}