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
|
{
"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",
"meteorclient_addon.mixins.json"
],
"custom": {
"meteor-client:color": "225,25,25"
},
"depends": {
"java": ">=21",
"minecraft": ">=${mc_version}",
"meteor-client": "*"
}
}
|