aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/fabric.mod.json
blob: c227e496c24f00ab0aefefecf2bf74dbdb3bd124 (plain)
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
49
50
51
52
{
  "schemaVersion": 1,
  "id": "firmament",
  "version": "${version}",
  "name": "Firmament",
  "description": "Firmament powered by NEU",
  "authors": [
    {
      "name": "Linnea Gräf",
      "contact": {
        "email": "nea@nea89.moe"
      }
    }
  ],
  "contact": {
    "discord": "https://discord.gg/moulberry",
    "sources": "https://git.nea.moe/nea/firmament/"
  },
  "license": "ARR",
  "icon": "assets/firmament/icon.png",
  "environment": "client",
  "entrypoints": {
      "main": [
          "moe.nea.firmament.Firmament::onInitialize"
      ],
      "client": [
          "moe.nea.firmament.Firmament::onClientInitialize"
      ],
      "rei_client": [
          "moe.nea.firmament.rei.FirmamentReiPlugin"
      ],
      "modmenu": [
          "moe.nea.firmament.modmenu.FirmamentModMenuPlugin"
      ]
  },
    "mixins": [
        "firmament.mixins.json"
    ],
    "depends": {
        "fabric": "*",
        "fabric-language-kotlin": ">=${fabric_kotlin_version}",
        "minecraft": ">=${minecraft_version}",
        "fabric-key-binding-api-v1": "*"
    },
    "custom": {
        "modmenu": {
            "links": {
                "modmenu.discord": "https://discord.gg/64pFP94AWA"
            }
        }
    }
}