aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/fabric.mod.json
diff options
context:
space:
mode:
authoranhgelus <anhgelus.morhtuuzh@proton.me>2024-08-21 17:30:25 +0000
committeranhgelus <anhgelus.morhtuuzh@proton.me>2024-08-21 17:30:25 +0000
commite842b9e82f76bb016ea6a099a5d40a2bb5977b22 (patch)
treeea27fa9ce9dcf48242f5abd281d426bd790da8ba /src/main/resources/fabric.mod.json
Initial commit
Diffstat (limited to 'src/main/resources/fabric.mod.json')
-rw-r--r--src/main/resources/fabric.mod.json34
1 files changed, 34 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..e48aaf8
--- /dev/null
+++ b/src/main/resources/fabric.mod.json
@@ -0,0 +1,34 @@
+{
+ "schemaVersion": 1,
+ "id": "molehunt",
+ "version": "${version}",
+ "name": "Molehunt",
+ "description": "Molehunt mod",
+ "authors": [
+ "Anhgelus Morhtuuzh"
+ ],
+ "contact": {},
+ "license": "AGPL-3.0",
+ "icon": "assets/molehunt/icon.png",
+ "environment": "*",
+ "entrypoints": {
+ "client": [
+ "world.anhgelus.molehunt.client.MolehuntClient"
+ ],
+ "main": [
+ "world.anhgelus.molehunt.Molehunt"
+ ]
+ },
+ "mixins": [
+ "molehunt.mixins.json",
+ {
+ "config": "molehunt.client.mixins.json",
+ "environment": "client"
+ }
+ ],
+ "depends": {
+ "fabricloader": ">=${loader_version}",
+ "fabric": "*",
+ "minecraft": "${minecraft_version}"
+ }
+}