aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/fabric.mod.json
diff options
context:
space:
mode:
authorAnthony Hilyard <anthony.hilyard@gmail.com>2021-10-24 11:46:40 -0700
committerAnthony Hilyard <anthony.hilyard@gmail.com>2021-10-24 11:46:40 -0700
commitec4c5aebf3b5b5af872c6b168c02bedd2bd5a9e3 (patch)
tree7f46aca691a09d9df9140505403a647827011df6 /src/main/resources/fabric.mod.json
parent2b38fda32d059303bed929b7ae634efa4dffc706 (diff)
downloadIceberg-ec4c5aebf3b5b5af872c6b168c02bedd2bd5a9e3.tar.gz
Iceberg-ec4c5aebf3b5b5af872c6b168c02bedd2bd5a9e3.tar.bz2
Iceberg-ec4c5aebf3b5b5af872c6b168c02bedd2bd5a9e3.zip
Initial Fabric port.
Diffstat (limited to 'src/main/resources/fabric.mod.json')
-rw-r--r--src/main/resources/fabric.mod.json41
1 files changed, 41 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..0920998
--- /dev/null
+++ b/src/main/resources/fabric.mod.json
@@ -0,0 +1,41 @@
+{
+ "schemaVersion": 1,
+ "id": "iceberg",
+ "version": "${version}",
+
+ "name": "Iceberg",
+ "description": "A library containing events, helpers, and utilities to make modding easier.",
+ "authors": [ "Grend" ],
+ "contact": {
+ "homepage": "https://anthonyhilyard.com/",
+ "sources": "https://github.com/AHilyard/Iceberg",
+ "discord": "https://discord.gg/S5NQjbXPnb"
+ },
+
+ "license": "CC BY-NC-ND 4.0",
+ "icon": "icon.png",
+
+ "environment": "*",
+
+ "entrypoints": { },
+ "accessWidener": "iceberg.accesswidener",
+
+ "depends": {
+ "fabricloader": ">=0.11.3",
+ "fabric": "*",
+ "minecraft": "1.17.x",
+ "java": ">=16"
+ },
+ "custom": {
+ "modupdater": {
+ "strategy": "curseforge",
+ "projectID": 539382,
+ "strict": false
+ },
+ "modmenu": {
+ "links": {
+ "modmenu.discord": "https://discord.gg/S5NQjbXPnb"
+ }
+ }
+ }
+}