aboutsummaryrefslogtreecommitdiff
path: root/fabric/src/main/resources
diff options
context:
space:
mode:
authorXander <xander@isxander.dev>2023-04-25 16:28:41 +0100
committerGitHub <noreply@github.com>2023-04-25 16:28:41 +0100
commit13c7ba45ff201423eb8dba8a40cfb66ebb531439 (patch)
tree1e799aa9da11fbc0833bc6b7c6e6799633c2ec50 /fabric/src/main/resources
parent8ba7196ae990fe9aa98680aba1b387e385fff99c (diff)
downloadYetAnotherConfigLib-13c7ba45ff201423eb8dba8a40cfb66ebb531439.tar.gz
YetAnotherConfigLib-13c7ba45ff201423eb8dba8a40cfb66ebb531439.tar.bz2
YetAnotherConfigLib-13c7ba45ff201423eb8dba8a40cfb66ebb531439.zip
Architectury! (#61)
Diffstat (limited to 'fabric/src/main/resources')
-rw-r--r--fabric/src/main/resources/fabric.mod.json35
1 files changed, 35 insertions, 0 deletions
diff --git a/fabric/src/main/resources/fabric.mod.json b/fabric/src/main/resources/fabric.mod.json
new file mode 100644
index 0000000..6b6f6e4
--- /dev/null
+++ b/fabric/src/main/resources/fabric.mod.json
@@ -0,0 +1,35 @@
+{
+ "schemaVersion": 1,
+ "id": "${id}",
+ "provides": [
+ "yet-another-config-lib"
+ ],
+ "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.14.0",
+ "minecraft": "~1.19.4",
+ "java": ">=17",
+ "fabric-resource-loader-v0": "*"
+ },
+ "mixins": [
+ "yacl.mixins.json"
+ ],
+ "custom": {
+ "modmenu": {
+ "badges": ["library"]
+ }
+ }
+}