aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/fabric.mod.json
diff options
context:
space:
mode:
authorisxander <xander@isxander.dev>2024-04-11 18:43:06 +0100
committerisxander <xander@isxander.dev>2024-04-11 18:43:06 +0100
commit04fe933f4c24817100f3101f088accf55a621f8a (patch)
treefeff94ca3ab4484160e69a24f4ee38522381950e /src/main/resources/fabric.mod.json
parent831b894fdb7fe3e173d81387c8f6a2402b8ccfa9 (diff)
downloadYetAnotherConfigLib-04fe933f4c24817100f3101f088accf55a621f8a.tar.gz
YetAnotherConfigLib-04fe933f4c24817100f3101f088accf55a621f8a.tar.bz2
YetAnotherConfigLib-04fe933f4c24817100f3101f088accf55a621f8a.zip
Extremely fragile and broken multiversion build with stonecutter
Diffstat (limited to 'src/main/resources/fabric.mod.json')
-rw-r--r--src/main/resources/fabric.mod.json38
1 files changed, 38 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..bc49bd9
--- /dev/null
+++ b/src/main/resources/fabric.mod.json
@@ -0,0 +1,38 @@
+{
+ "schemaVersion": 1,
+ "id": "${id}",
+ "version": "${version}",
+ "name": "${name}",
+ "description": "${description}",
+ "authors": [
+ "isXander"
+ ],
+ "contact": {
+ "homepage": "https://isxander.dev",
+ "issues": "https://github.com/${github}/issues",
+ "sources": "https://github.com/${github}"
+ },
+ "icon": "yacl-128x.png",
+ "license": "LGPL-3.0-or-later",
+ "environment": "*",
+ "depends": {
+ "fabricloader": ">=0.15.0",
+ "minecraft": "${mc}",
+ "java": ">=17",
+ "fabric-resource-loader-v0": "*"
+ },
+ "mixins": [
+ "yacl.mixins.json",
+ "yacl-fabric.mixins.json"
+ ],
+ "entrypoints": {
+ "client": [
+ "dev.isxander.yacl3.platform.PlatformEntrypoint"
+ ]
+ },
+ "custom": {
+ "modmenu": {
+ "badges": ["library"]
+ }
+ }
+}