From 9a2907f253fee7598836633d4fe2c03651844786 Mon Sep 17 00:00:00 2001 From: inyourwalls Date: Tue, 7 Nov 2023 18:35:00 -0500 Subject: hello, world --- src/main/resources/fabric.mod.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/main/resources/fabric.mod.json (limited to 'src/main/resources/fabric.mod.json') 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": {} +} -- cgit v1.3.1