aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/fabric.mod.json
blob: bec8142b0cbf7d769d2b93ae4d170f2c636f29a7 (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
37
38
39
40
41
{
  "schemaVersion": 1,
  "id": "ygasi",
  "version": "0.1",

  "name": "You've got a Skill Issue",
  "description": "A Server-side Fabric mod with a skill tree and leveling! ",
  "authors": [
    "Mayaqq"
  ],
  "contact": {
    "homepage": "https://github.com/Maximusbarcz",
    "sources": "https://github.com/Maximusbarcz/youve-got-a-skill-issue"
  },

  "license": "LGPL-3",
  "icon": "assets/ygasi/icon.png",

  "environment": "server",
  "entrypoints": {
    "fabric-datagen": [
      "dev.mayaqq.ygasi.registry.dataGen.DataGenRegistry"
    ],
    "main": [
      "dev.mayaqq.ygasi.Ygasi"
    ]
  },
  "mixins": [
    "ygasi.mixins.json"
  ],

  "depends": {
    "fabricloader": ">=0.14.9",
    "fabric-api": "*",
    "minecraft": "~1.19",
    "java": ">=17"
  },
  "suggests": {
    "another-mod": "*"
  }
}