aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/fabric.mod.json
blob: d02abeb323cbb53d2ec7d482ced7732ea7adf090 (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
{
  "schemaVersion": 1,
  "id": "mcqtt",
  "version": "${version}",

  "name": "McQTT",
  "description": "",
  "authors": [
    "kompetenzbolzen"
  ],
  "contact": {
    "homepage": "https://fabricmc.net/",
    "sources": "https://github.com/FabricMC/fabric-example-mod"
  },

  "license": "",
  "icon": "assets/modid/icon.png",

  "environment": "server",
  "entrypoints": {
    "main": [
      "re.jag.mcqtt.Mcqtt"
    ]
  },
  "mixins": [
    "mcqtt.mixins.json"
  ],

  "depends": {
    "fabricloader": ">=0.7.4",
    "minecraft": "1.16.x"
  },
  "suggests": {
    "flamingo": "*"
  }
}