diff options
author | nea <romangraef@gmail.com> | 2022-06-06 15:04:10 +0200 |
---|---|---|
committer | nea <romangraef@gmail.com> | 2022-06-06 15:04:10 +0200 |
commit | 8429ee15a20c38fe3a094bebf4ba4eb51c2cedd7 (patch) | |
tree | 43475d90009dd6f610272573fa054acb9bad4ab2 /src/main/resources/fabric.mod.json | |
download | morbingtime-8429ee15a20c38fe3a094bebf4ba4eb51c2cedd7.tar.gz morbingtime-8429ee15a20c38fe3a094bebf4ba4eb51c2cedd7.tar.bz2 morbingtime-8429ee15a20c38fe3a094bebf4ba4eb51c2cedd7.zip |
Initial commit
Diffstat (limited to 'src/main/resources/fabric.mod.json')
-rw-r--r-- | src/main/resources/fabric.mod.json | 32 |
1 files changed, 32 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..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" + } +} |