From 9e0fbda93c31fae950c473414362f307dd4dc79f Mon Sep 17 00:00:00 2001 From: Elis Eriksson Date: Wed, 20 Aug 2025 13:50:09 +0200 Subject: Initial --- src/main/resources/fabric.mod.json | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 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..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": "*" + } +} -- cgit v1.3-7-ge9ab