summaryrefslogtreecommitdiff
path: root/src/main/resources/fabric.mod.json
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources/fabric.mod.json')
-rw-r--r--src/main/resources/fabric.mod.json34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json
new file mode 100644
index 0000000..a52933d
--- /dev/null
+++ b/src/main/resources/fabric.mod.json
@@ -0,0 +1,34 @@
+{
+ "schemaVersion": 1,
+ "id": "note2input",
+ "version": "${version}",
+ "name": "Note2Input",
+ "description": "Turns notes from your microphone into input",
+ "authors": [],
+ "contact": {},
+ "license": "MIT",
+ "icon": "assets/note2input/icon.png",
+ "environment": "client",
+ "entrypoints": {
+ "fabric-datagen": [
+ "eu.projnull.spelis.note2input.client.DataGenerator"
+ ],
+ "client": [
+ "eu.projnull.spelis.note2input.client.Client"
+ ],
+ "main": [
+ "eu.projnull.spelis.note2input.Main"
+ ],
+ "modmenu": [
+ "eu.projnull.spelis.note2input.config.ConfigScreen"
+ ]
+ },
+ "mixins": [
+ "note2input.mixins.json"
+ ],
+ "depends": {
+ "fabricloader": ">=${loader_version}",
+ "fabric-api": "*",
+ "minecraft": "${minecraft_version}"
+ }
+}