summary refs log tree commit diff stats
path: root/src/main/resources/fabric.mod.json
blob: 4b9af9f4e431de1e533f1e82cba209cf60a89ee0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "id": "modid",
  "name": "Example Mod",
  "description": "This is an example description! Tell everyone what your mod is about!",
  "version": "${version}",
  "side": "universal",
  "initializers": [
    "net.fabricmc.example.ExampleMod"
  ],
  "requires": {
    "fabric": "*"
  },
  "mixins": {
    "client": "modid.client.json",
    "common": "modid.common.json"
  }
}