summary refs log tree commit diff stats
path: root/src/main/resources/fabric.mod.json
blob: 98ad97f71ae187e95f2b2c77f5a5df5873e0cfa9 (plain) (blame)
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
{
  "schemaVersion": 1,
  "id": "friendcode",
  "version": "${version}",

  "name": "Friend Code",
  "description": "Lets your friends join your singleplayer world with a code.",
  "authors": [
    "SoniEx2"
  ],
  "contact": {
    "homepage": "https://soniex2.itch.io/friendcode",
    "sources": "https://soniex2.autistic.space/git-repos/friendcode.git",
    "ganarchy": "web+ganarchy:bfb981cd49a6bbcd15482dceeb4ab121c0408157"
  },

  "license": "0BSD",
  "icon": "assets/friendcode/icon.png",

  "environment": "*",
  "entrypoints": {
    "main": [
      "ganarchy.friendcode.FriendCode"
    ]
  },
  "mixins": [
    "friendcode.mixins.json"
  ],

  "depends": {
    "fabricloader": ">=0.14.6",
    "minecraft": "~1.19",
    "java": ">=17"
  },
  "recommends": {
    "fabric": "*"
  }
}