From 8429ee15a20c38fe3a094bebf4ba4eb51c2cedd7 Mon Sep 17 00:00:00 2001 From: nea Date: Mon, 6 Jun 2022 15:04:10 +0200 Subject: Initial commit --- src/main/resources/fabric.mod.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 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..5fdb005 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,32 @@ +{ + "schemaVersion": 1, + "id": "morbing", + "version": "${version}", + "name": "Morbing", + "description": "", + "authors": [ + "nea89" + ], + "contact": { + "homepage": "", + "sources": "" + }, + "license": "LGPL-3.0", + "icon": "assets/morbing/icon.png", + "environment": "client", + "entrypoints": { + "main": [ + "moe.nea.morbing.Morbing" + ], + "client": [ + "moe.nea.morbing.MorbingClient" + ] + }, + "mixins": [ + "morbing.mixins.json" + ], + "depends": { + "fabric": "*", + "minecraft": ">=1.18.2" + } +} -- cgit