aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/fabric.mod.json
blob: 41c327796101a319eecfb79fe536033b62ef1417 (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
{
  "schemaVersion": 1,
  "id": "frank",
  "version": "${version}",
  "name": "Frank",
  "description": "Mod that displays additional info about furnaces and fuels.",
  "authors": [
    "InYourWalls"
  ],
  "contact": {
    "sources": "https://gitlab.com/programmersocks/frank"
  },
  "license": "MIT",
  "icon": "assets/frank/icon.png",
  "environment": "client",
  "entrypoints": {
    "client": [
      "net.inyourwalls.frank.Frank"
    ]
  },
  "mixins": [
    "frank.mixins.json"
  ],
  "depends": {
    "fabricloader": ">=0.14.22",
    "minecraft": "~1.20.2",
    "java": ">=17"
  },
  "suggests": {}
}