aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/fabric.mod.json
diff options
context:
space:
mode:
authorGravatar Chris Xiong <chirs241097@gmail.com> 2023-09-05 23:22:33 -0400
committerGravatar Chris Xiong <chirs241097@gmail.com> 2023-09-05 23:22:33 -0400
commit40432e083b11271cf3148b9c38156cf759436699 (patch)
tree592dc434b38dc2fba42b66943d9db7328bc63c0f /src/main/resources/fabric.mod.json
downloadmeteor-trashy-addon-40432e083b11271cf3148b9c38156cf759436699.tar.xz
Initial code dump.
Diffstat (limited to 'src/main/resources/fabric.mod.json')
-rw-r--r--src/main/resources/fabric.mod.json31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json
new file mode 100644
index 0000000..68f8dd0
--- /dev/null
+++ b/src/main/resources/fabric.mod.json
@@ -0,0 +1,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": "*"
+ }
+}