diff options
Diffstat (limited to 'src/main/resources/fabric.mod.json')
-rw-r--r-- | src/main/resources/fabric.mod.json | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..7599de5 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,37 @@ +{ + "schemaVersion": 1, + "id": "gloppers", + "version": "${version}", + "name": "Gloppers!", + "description": "Filter your hoppers by renaming them with glob patterns.", + "authors": [ + "NotNite" + ], + "contact": { + "sources": "https://github.com/NotNite/gloppers" + }, + "license": "MIT", + "icon": "assets/gloppers/icon.png", + "environment": "server", + "entrypoints": { + "server": [ + { + "value": "com.notnite.gloppers.Gloppers", + "adapter": "kotlin" + } + ] + }, + "mixins": [ + { + "environment": "server", + "config": "gloppers.mixins.json" + } + ], + "depends": { + "fabricloader": ">=0.14.19", + "minecraft": "~1.20", + "java": ">=17", + "fabric-api": "*", + "fabric-language-kotlin": ">=1.8.22" + } +} |