summaryrefslogtreecommitdiff
path: root/src/main/resources/fabric.mod.json
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources/fabric.mod.json')
-rw-r--r--src/main/resources/fabric.mod.json33
1 files changed, 33 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..f4d8e92
--- /dev/null
+++ b/src/main/resources/fabric.mod.json
@@ -0,0 +1,33 @@
+{
+ "schemaVersion": 1,
+ "id": "blame",
+ "version": "${version}",
+ "name": "Blame",
+ "description": "Who to blame?",
+ "authors": [
+ "trueKeuin"
+ ],
+ "contact": {
+ "homepage": "https://keuin.cc",
+ "sources": "https://github.com/keuin/blame-fabric"
+ },
+ "license": "MIT",
+ "icon": "assets/blame/icon.png",
+ "environment": "*",
+ "entrypoints": {
+ "main": [
+ "com.keuin.blame.Blame"
+ ]
+ },
+ "mixins": [
+ "blame.mixins.json"
+ ],
+ "depends": {
+ "fabricloader": ">=0.7.4",
+ "fabric": "*",
+ "minecraft": "1.16.x"
+ },
+ "suggests": {
+ "another-mod": "*"
+ }
+}