aboutsummaryrefslogtreecommitdiff
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.json25
1 files changed, 25 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..f829d28
--- /dev/null
+++ b/src/main/resources/fabric.mod.json
@@ -0,0 +1,25 @@
+{
+ "schemaVersion": 1,
+ "id": "safelog",
+ "version": "${version}",
+ "name": "Safelog",
+ "description": "Redact IP addresses from Minecraft server logs",
+ "authors": [
+ "YuutaW@YMC"
+ ],
+ "contact": {},
+ "license": "GPLv2",
+ "environment": "server",
+ "entrypoints": {
+ "main": [
+ "moe.ymc.safelog.Safelog"
+ ]
+ },
+ "mixins": [
+ "safelog.mixins.json"
+ ],
+ "depends": {
+ "fabricloader": ">=0.12.2",
+ "minecraft": "1.17.1"
+ }
+}