summary refs log tree commit diff stats
path: root/src/main/resources/fabric.mod.json
diff options
context:
space:
mode:
authorSoniEx2 <endermoneymod@gmail.com>2021-08-27 15:53:46 -0300
committerSoniEx2 <endermoneymod@gmail.com>2021-08-27 15:53:46 -0300
commitdd26b5f3aa8108c3026080c734878e541c4cd05c (patch)
treedc16b2c4d3927cb44245a66e8a41ed7d005aeae4 /src/main/resources/fabric.mod.json
[Project] UwU Mode HEAD fabric-1.17.x default
A client-side mod for Minecraft that adds uwu~ to chat messages, and can
be enabled/disabled with commands.
Diffstat (limited to 'src/main/resources/fabric.mod.json')
-rw-r--r--src/main/resources/fabric.mod.json35
1 files changed, 35 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..485459c
--- /dev/null
+++ b/src/main/resources/fabric.mod.json
@@ -0,0 +1,35 @@
+{
+  "schemaVersion": 1,
+  "id": "uwumode",
+  "version": "${version}",
+
+  "name": "UwU Mode",
+  "description": "Makes your messages end in uwu, with consent.",
+  "authors": [
+    "SoniEx2"
+  ],
+  "contact": {
+    "homepage": "https://autistic.space/",
+    "sources": "https://soniex2.autistic.space/git-repos/uwumode.git"
+  },
+
+  "license": "AGPL-3.0-or-later",
+
+  "environment": "*",
+  "entrypoints": {
+    "client": [
+      "space.autistic.uwumode.UwuModeKt::init"
+    ]
+  },
+  "mixins": [
+    "uwumode.mixins.json"
+  ],
+  "depends": {
+    "fabricloader": ">=0.8.7",
+    "fabric": "*",
+    "fabric-language-kotlin": "*",
+    "minecraft": "1.17.x"
+  },
+  "suggests": {
+  }
+}