diff options
Diffstat (limited to 'versions/src/main/resources/fabric.mod.json')
-rw-r--r-- | versions/src/main/resources/fabric.mod.json | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/versions/src/main/resources/fabric.mod.json b/versions/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..23d8e97 --- /dev/null +++ b/versions/src/main/resources/fabric.mod.json @@ -0,0 +1,35 @@ +{ + "schemaVersion": 1, + "id": "${id}", + "name": "${name}", + "version": "${version}", + "description": "OneConfig", + "authors": [ + "Polyfrost" + ], + "contact": { + "homepage": "https://polyfrost.cc", + "sources": "https://github.com/Polyfrost/OneConfig", + "issues": "https://inv.wtf/polyfrost" + }, + "license": "LGPL-3.0", + "environment": "client", + "mixins": [ + "mixins.oneconfig.json" + ], + "entrypoints": { + "preLaunch": [ + "cc.polyfrost.oneconfig.internal.plugin.OneConfigPreLaunch" + ] + }, + "depends": { + "fabricloader": ">=0.12.0", + "minecraft": "${mcVersionStr}", + "java": ">=${java}" + }, + "custom": { + "modmenu": { + "badges": [ "library" ] + } + } +}
\ No newline at end of file |