From b8f18d9da8f2023af37d5302b9bf0cbc6f83e95f Mon Sep 17 00:00:00 2001 From: Elis Eriksson Date: Wed, 4 Mar 2026 13:43:21 +0100 Subject: Initial Commit --- src/main/resources/fabric.mod.json | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/main/resources/fabric.mod.json (limited to 'src/main/resources/fabric.mod.json') 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}" + } +} -- cgit v1.3-7-ge9ab