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
|
{
"schemaVersion": 1,
"id": "gloppers",
"version": "${version}",
"name": "Gloppers!",
"description": "Filter your hoppers by renaming them with glob patterns.",
"authors": [
"NotNite"
],
"contact": {
"sources": "https://github.com/NotNite/gloppers"
},
"license": "MIT",
"icon": "assets/gloppers/icon.png",
"environment": "server",
"entrypoints": {
"server": [
{
"value": "com.notnite.gloppers.Gloppers",
"adapter": "kotlin"
}
]
},
"mixins": [
{
"environment": "server",
"config": "gloppers.mixins.json"
}
],
"depends": {
"fabricloader": ">=0.14.19",
"minecraft": "~1.20",
"java": ">=17",
"fabric-api": "*",
"fabric-language-kotlin": ">=1.8.22"
}
}
|