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

53 lines
1.2 KiB
JSON
Raw Normal View History

2020-11-24 22:04:13 +01:00
{
"schemaVersion": 1,
"id": "respackopts",
"version": "${version}",
"name": "Resource Pack Options",
"description": "Allows resource packs to expose GUIs to users",
"authors": [
"JFronny"
],
"contact": {},
"license": "MIT",
"icon": "assets/respackopts/icon.png",
"environment": "client",
"entrypoints": {
2022-07-28 14:10:59 +02:00
"main": [
2020-11-24 22:04:13 +01:00
"io.gitlab.jfronny.respackopts.Respackopts"
],
2022-07-28 14:10:59 +02:00
"client": [
"io.gitlab.jfronny.respackopts.RespackoptsClient"
],
2020-11-24 22:04:13 +01:00
"modmenu": [
2020-12-28 12:12:59 +01:00
"io.gitlab.jfronny.respackopts.integration.ModMenuCompat"
2020-11-24 22:04:13 +01:00
],
2020-11-25 21:58:21 +01:00
"frex": [
"io.gitlab.jfronny.respackopts.integration.FrexCompat"
2022-07-28 14:10:59 +02:00
],
"respackopts:save_hook": [
"io.gitlab.jfronny.respackopts.Respackopts"
],
"respackopts:client_save_hook": [
"io.gitlab.jfronny.respackopts.RespackoptsClient"
2020-11-24 22:04:13 +01:00
]
},
"mixins": [
2022-07-28 14:10:59 +02:00
"respackopts.mixins.json",
{
"config": "respackopts.client.mixins.json",
"environment": "client"
}
2020-11-24 22:04:13 +01:00
],
"depends": {
"fabricloader": ">=0.12.0",
2020-11-24 22:04:13 +01:00
"fabric": "*",
2021-07-21 15:59:17 +02:00
"minecraft": "*",
2022-07-28 14:10:59 +02:00
"cloth-config2": ">=7.0.0",
"libjf-data-manipulation-v0": ">=2.0",
"libjf-base": ">=2.0"
2021-10-09 13:09:57 +02:00
},
"conflicts": {
"libjf": "<2.0"
2020-11-24 22:04:13 +01:00
}
}