diff options
Diffstat (limited to 'src/main/resources')
| -rw-r--r-- | src/main/resources/fabric.mod.json | 30 |
1 files changed, 30 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..41c3277 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,30 @@ +{ + "schemaVersion": 1, + "id": "frank", + "version": "${version}", + "name": "Frank", + "description": "Mod that displays additional info about furnaces and fuels.", + "authors": [ + "InYourWalls" + ], + "contact": { + "sources": "https://gitlab.com/programmersocks/frank" + }, + "license": "MIT", + "icon": "assets/frank/icon.png", + "environment": "client", + "entrypoints": { + "client": [ + "net.inyourwalls.frank.Frank" + ] + }, + "mixins": [ + "frank.mixins.json" + ], + "depends": { + "fabricloader": ">=0.14.22", + "minecraft": "~1.20.2", + "java": ">=17" + }, + "suggests": {} +} |
