diff options
| author | Hawarth <hawarth@hawarth.com> | 2026-03-14 18:39:10 +0100 |
|---|---|---|
| committer | Hawarth <hawarth@hawarth.com> | 2026-03-14 18:39:27 +0100 |
| commit | 2e79ad1b980b4867c3b32688d7946d52f5b85a62 (patch) | |
| tree | 215aac8d730dcdd61aa2ac95b248f70c5ced97b8 /src/main/resources/fabric.mod.json | |
| download | mc-craftsdwarfship-trunk.tar.gz mc-craftsdwarfship-trunk.zip | |
Initialises the project using Fabric MC's template mod generator.
Diffstat (limited to 'src/main/resources/fabric.mod.json')
| -rw-r--r-- | src/main/resources/fabric.mod.json | 41 |
1 files changed, 41 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..a0c0314 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,41 @@ +{ + "schemaVersion": 1, + "id": "craftsdwarfship", + "version": "${version}", + "name": "Craftsdwarfship", + "description": "Adds some mechanics (that make sense) from Dwarf Fortress to Minecraft.", + "authors": [ + "Hawarth" + ], + "contact": { + "homepage": "https://hawarth.com/", + "sources": "https://git.hawarth.com/mc-craftsdwarfship/" + }, + "license": "GNU GPLv3", + "icon": "assets/craftsdwarfship/icon.png", + "environment": "*", + "entrypoints": { + "main": [ + "com.hawarth.Craftsdwarfship" + ], + "client": [ + "com.hawarth.CraftsdwarfshipClient" + ], + "fabric-datagen": [ + "com.hawarth.CraftsdwarfshipDataGenerator" + ] + }, + "mixins": [ + "craftsdwarfship.mixins.json", + { + "config": "craftsdwarfship.client.mixins.json", + "environment": "client" + } + ], + "depends": { + "fabricloader": ">=0.18.4", + "minecraft": "~1.21.11", + "java": ">=21", + "fabric-api": "*" + } +} |
