diff options
Diffstat (limited to 'src/main/resources/fabric.mod.json')
| -rw-r--r-- | src/main/resources/fabric.mod.json | 35 |
1 files changed, 35 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..fe513b6 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,35 @@ +{ + "schemaVersion": 1, + "id": "valvesneak", + "version": "${version}", + "name": "ValveSneak", + "description": "Sprinting like Valve games.", + "authors": [], + "contact": {}, + "license": "MIT", + "icon": "assets/valvesneak/icon.png", + "environment": "client", + "entrypoints": { + "fabric-datagen": [ + "eu.projnull.spelis.valvesneak.client.ValvesneakDataGenerator" + ], + "client": [ + "eu.projnull.spelis.valvesneak.client.ValvesneakClient" + ], + "main": [ + "eu.projnull.spelis.valvesneak.Valvesneak" + ] + }, + "mixins": [ + "valvesneak.mixins.json", + { + "config": "valvesneak.client.mixins.json", + "environment": "client" + } + ], + "depends": { + "fabricloader": "*", + "fabric": "*", + "minecraft": "*" + } +} |
