diff options
| author | Elis Eriksson <Spelis@duck.com> | 2026-03-04 13:43:21 +0100 |
|---|---|---|
| committer | Elis Eriksson <Spelis@duck.com> | 2026-03-04 13:43:21 +0100 |
| commit | b8f18d9da8f2023af37d5302b9bf0cbc6f83e95f (patch) | |
| tree | 30cf5444509f97fadfd343b2f379cc3df06bc424 /src/main/resources/fabric.mod.json | |
| download | note2input-b8f18d9da8f2023af37d5302b9bf0cbc6f83e95f.tar note2input-b8f18d9da8f2023af37d5302b9bf0cbc6f83e95f.tar.gz note2input-b8f18d9da8f2023af37d5302b9bf0cbc6f83e95f.tar.bz2 note2input-b8f18d9da8f2023af37d5302b9bf0cbc6f83e95f.tar.lz note2input-b8f18d9da8f2023af37d5302b9bf0cbc6f83e95f.tar.xz note2input-b8f18d9da8f2023af37d5302b9bf0cbc6f83e95f.tar.zst note2input-b8f18d9da8f2023af37d5302b9bf0cbc6f83e95f.zip | |
Initial Commit
Diffstat (limited to 'src/main/resources/fabric.mod.json')
| -rw-r--r-- | src/main/resources/fabric.mod.json | 34 |
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}" + } +} |
