aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/fabric.mod.json
blob: 68f8dd065e127ed10d7e72736f1a027fa80e1591 (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
{
  "schemaVersion": 1,
  "id": "meteor-trashy-addon",
  "version": "${version}",
  "name": "Meteor Trashy Addon",
  "description": "A trashy collection of meteor addons",
  "authors": [
    "Chris Xiong"
  ],
  "contact": {
    "repo": "https://github.com/MeteorDevelopment/meteor-addon-template"
  },
  "icon": "assets/template/icon.png",
  "environment": "client",
  "entrypoints": {
    "meteor": [
      "org.chrisoft.trashyaddon.Addon"
    ]
  },
  "mixins": [
    "addon.mixins.json"
  ],
  "custom": {
    "meteor-client:color": "225,25,25"
  },
  "depends": {
    "java": ">=17",
    "minecraft": ">=${mc_version}",
    "meteor-client": "*"
  }
}