aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/fabric.mod.json
blob: b40514ed4b6c378c42c325c60c07642edbd343a0 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
    "schemaVersion": 1,
    "id": "firmament",
    "version": "${version}",
    "name": "Firmament",
    "description": "Firmament powered by NEU",
    "authors": [
        {
            "name": "Linnea Gräf",
            "contact": {
                "email": "nea@nea.moe"
            }
        }
    ],
    "contact": {
        "discord": "https://discord.gg/64pFP94AWA",
        "sources": "https://git.nea.moe/nea/firmament/"
    },
    "license": "GPL 3.0 or Later",
    "accessWidener": "firmament.accesswidener",
    "icon": "assets/firmament/logo.png",
    "environment": "client",
    "entrypoints": {
        "main": [
            "moe.nea.firmament.Firmament::onInitialize"
        ],
        "mm_shedaniel:early_risers": [
            "moe.nea.firmament.init.EarlyRiser"
        ],
        "client": [
            "moe.nea.firmament.Firmament::onClientInitialize"
        ],
        "rei_client": [
            "moe.nea.firmament.compat.rei.FirmamentReiPlugin"
        ],
        "modmenu": [
            "moe.nea.firmament.compat.modmenu.FirmamentModMenuPlugin"
        ],
        "jarvis": [
            "moe.nea.firmament.jarvis.JarvisIntegration"
        ]
    },
    "mixins": [
        "firmament.mixins.json"
    ],
    "depends": {
        "fabric": "*",
        "fabric-language-kotlin": ">=${fabric_kotlin_version}",
        "minecraft": ">=${minecraft_version}",
        "roughlyenoughitems": ">=${rei_version}",
        "cloth-config": "*",
        "architectury": "*"
    },
    "custom": {
        "configured": {
            "providers": [
                "moe.nea.firmament.compat.configured.ConfiguredCompat"
            ]
        },
        "modmenu": {
            "links": {
                "modmenu.discord": "https://discord.gg/64pFP94AWA"
            }
        },
        "mc-publish": {
            "dependencies": [
                "roughlyenoughitems{modrinth:rei}",
                "architectury{modrinth:architectury-api}"
            ]
        }
    }
}