diff options
| author | inyourwalls <inyourwalls@tutanota.com> | 2023-11-07 18:35:00 -0500 |
|---|---|---|
| committer | inyourwalls <inyourwalls@tutanota.com> | 2023-11-07 18:35:00 -0500 |
| commit | 9a2907f253fee7598836633d4fe2c03651844786 (patch) | |
| tree | d829ef360ba220b5d058c30b15b00100ff605ab2 /src/main/resources/fabric.mod.json | |
| parent | 86a919f530c7990eecf1b98c3151941f39c7d4eb (diff) | |
hello, world
Diffstat (limited to 'src/main/resources/fabric.mod.json')
| -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": {} +} |
