diff options
Diffstat (limited to 'src/main/resources/fabric.mod.json')
-rw-r--r-- | src/main/resources/fabric.mod.json | 44 |
1 files changed, 44 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..71f2518 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,44 @@ +{ + "schemaVersion": 1, + "id": "pirate-radio", + "version": "${version}", + "name": "Pirate Radio", + "description": "This is an example description! Tell everyone what your mod is about!", + "authors": [ + "Me!" + ], + "contact": { + "homepage": "https://fabricmc.net/", + "sources": "https://github.com/FabricMC/fabric-example-mod" + }, + "license": "LGPL-2.1-or-later", + "icon": "assets/pirate-radio/icon.png", + "environment": "*", + "entrypoints": { + "main": [ + { + "value": "space.autistic.radio.PirateRadio", + "adapter": "kotlin" + } + ], + "client": [ + { + "value": "space.autistic.radio.client.PirateRadioClient", + "adapter": "kotlin" + } + ], + "fabric-datagen": [ + { + "value": "space.autistic.radio.client.PirateRadioDataGenerator", + "adapter": "kotlin" + } + ] + }, + "depends": { + "fabricloader": ">=0.16.10", + "minecraft": "~1.21.1", + "java": ">=21", + "fabric-api": "*", + "fabric-language-kotlin": "*" + } +} \ No newline at end of file |