1
0
forked from Clones/Controlify
Files
Controlify/src/main/resources/fabric.mod.json
2023-04-16 17:44:39 +01:00

43 lines
955 B
JSON

{
"schemaVersion": 1,
"id": "${id}",
"version": "${version}",
"name": "${name}",
"description": "${description}",
"authors": [
"isXander"
],
"contact": {
"homepage": "https://isxander.dev",
"issues": "https://github.com/${github}/issues",
"sources": "https://github.com/${github}"
},
"license": "LGPL-3.0-or-later",
"environment": "client",
"entrypoints": {
"preLaunch": [
"com.llamalad7.mixinextras.MixinExtrasBootstrap::init"
],
"modmenu": [
"dev.isxander.controlify.config.gui.ModMenuIntegration"
],
"client": [
"dev.isxander.controlify.ControlifyEntrypoint"
]
},
"mixins": [
"controlify.mixins.json"
],
"icon": "icon.png",
"accessWidener": "controlify.accesswidener",
"depends": {
"fabricloader": ">=0.14.0",
"minecraft": "~1.19.4",
"java": ">=17",
"yet-another-config-lib": "^2.4.0"
},
"breaks": {
"midnightcontrols": "*"
}
}