aboutsummaryrefslogtreecommitdiff
path: root/versions/src/main/resources/fabric.mod.json
blob: 23d8e97511f295cd6c2c753b5a4da421d9d12e37 (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
{
  "schemaVersion": 1,
  "id": "${id}",
  "name": "${name}",
  "version": "${version}",
  "description": "OneConfig",
  "authors": [
    "Polyfrost"
  ],
  "contact": {
    "homepage": "https://polyfrost.cc",
    "sources": "https://github.com/Polyfrost/OneConfig",
    "issues": "https://inv.wtf/polyfrost"
  },
  "license": "LGPL-3.0",
  "environment": "client",
  "mixins": [
    "mixins.oneconfig.json"
  ],
  "entrypoints": {
    "preLaunch": [
      "cc.polyfrost.oneconfig.internal.plugin.OneConfigPreLaunch"
    ]
  },
  "depends": {
    "fabricloader": ">=0.12.0",
    "minecraft": "${mcVersionStr}",
    "java": ">=${java}"
  },
  "custom": {
    "modmenu": {
      "badges": [ "library" ]
    }
  }
}