aboutsummaryrefslogtreecommitdiff
path: root/mod/src/main/resources/fabric.mod.json
diff options
context:
space:
mode:
Diffstat (limited to 'mod/src/main/resources/fabric.mod.json')
-rw-r--r--mod/src/main/resources/fabric.mod.json24
1 files changed, 24 insertions, 0 deletions
diff --git a/mod/src/main/resources/fabric.mod.json b/mod/src/main/resources/fabric.mod.json
new file mode 100644
index 0000000..999aeeb
--- /dev/null
+++ b/mod/src/main/resources/fabric.mod.json
@@ -0,0 +1,24 @@
+{
+ "schemaVersion": 1,
+ "id": "acron",
+ "version": "${version}",
+ "name": "Acron",
+ "description": "WebSocket based remote server management",
+ "authors": ["YuutaW"],
+ "contact": {},
+ "license": "GPL-2.0",
+ "icon": "assets/acron/icon.png",
+ "environment": "server",
+ "entrypoints": {
+ "main": [
+ "moe.ymc.acron.Acron"
+ ]
+ },
+ "mixins": [
+ "acron.mixins.json"
+ ],
+ "depends": {
+ "fabricloader": ">=0.14.4",
+ "minecraft": "1.17.1"
+ }
+}