aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/fabric.mod.json
blob: 424a293a245351525455e5197dcf99b1d5b8d74d (plain) (blame)
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
{
  "schemaVersion": 1,
  "id": "frank",
  "version": "${version}",
  "name": "Frank",
  "description": "Mod that displays additional info in furnaces.",
  "authors": [
    "InYourWalls"
  ],
  "contact": {
    "sources": "https://codeberg.org/inyourwalls/frank"
  },
  "license": "MIT",
  "icon": "assets/frank/icon.png",
  "environment": "client",
  "entrypoints": {
    "client": [
      "net.inyourwalls.frank.Frank"
    ],
    "modmenu": [
      "net.inyourwalls.frank.ModMenuIntegration"
    ]
  },
  "mixins": [
    "frank.mixins.json"
  ],
  "depends": {
    "fabricloader": ">=0.14.22",
    "fabric-screen-api-v1": ">=0.114.2+1.21.4",
    "java": ">=17",
    "minecraft": "~1.21.4"
  },
  "suggests": {},
  "custom": {
    "loom:injected_interfaces": {
      "net/minecraft/class_1720": ["net/inyourwalls/frank/ScreenHandlerPropertyAccessor"]
    },
    "modmenu": {
      "links": {
        "frank.matrix": "https://matrix.to/#/#mod-support:inyourwalls.net"
      }
    }
  }
}