1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
{
"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": {
"client": [
"com.anthonyhilyard.iceberg.IcebergClient"
]
},
"accessWidener": "iceberg.accesswidener",
"mixins": [
"iceberg.mixins.json"
],
"depends": {
"fabricloader": ">=0.12.5",
"fabric": "*",
"minecraft": "1.18.x",
"java": ">=17"
},
"custom": {
"modupdater": {
"strategy": "curseforge",
"projectID": 539382,
"strict": false
},
"modmenu": {
"links": {
"modmenu.discord": "https://discord.gg/S5NQjbXPnb"
}
}
}
}
|