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

  "name": "Chat Privacy",
  "description": "Partially solves the M${'$'} problem.",
  "authors": [
    "SoniEx2"
  ],
  "contact": {
    "homepage": "",
    "sources": ""
  },

  "license": "0BSD AND LGPL-2.1-or-later",
  "icon": "assets/chatprivacy/icon.png",

  "environment": "*",
  "entrypoints": {
    "main": [
      "ganarchy.chatprivacy.ChatPrivacyKt::init"
    ]
  },
  "mixins": [
    "chatprivacy.mixins.json"
  ],
  "depends": {
    "fabricloader": ">=0.14.6",
    "fabric-language-kotlin": "*",
    "fabric": "*",
    "minecraft": "~1.19",
    "java": ">=17"
  },
  "recommends": {
  }
}