From aef1027f24ad8d871fe11b88a9e4b4f51af620cf Mon Sep 17 00:00:00 2001 From: anhgelus Date: Thu, 25 Jul 2024 17:08:31 +0000 Subject: Initial commit --- src/main/resources/fabric.mod.json | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 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..ce79883 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,34 @@ +{ + "schemaVersion": 1, + "id": "manhunt", + "version": "${version}", + "name": "Manhunt", + "description": "This is an example description! Tell everyone what your mod is about!", + "authors": [ + "Me!" + ], + "contact": { + "homepage": "https://fabricmc.net/", + "sources": "https://github.com/FabricMC/fabric-example-mod" + }, + "license": "CC0-1.0", + "icon": "assets/manhunt/icon.png", + "environment": "*", + "entrypoints": { + "main": [ + "world.anhgelus.manhunt.Manhunt" + ] + }, + "mixins": [ + "manhunt.mixins.json" + ], + "depends": { + "fabricloader": ">=0.15.11", + "minecraft": "~1.16.1", + "java": ">=8", + "fabric": "*" + }, + "suggests": { + "another-mod": "*" + } +} \ No newline at end of file -- cgit v1.2.3