diff options
Diffstat (limited to 'src/main/resources/fabric.mod.json')
-rw-r--r-- | src/main/resources/fabric.mod.json | 81 |
1 files changed, 42 insertions, 39 deletions
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 4f92431..14790af 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -1,41 +1,44 @@ { - "schemaVersion": 1, - "id": "funny-teleporters", - "version": "${version}", - "name": "Funny Teleporters", - "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": "CC0-1.0", - "icon": "assets/funny-teleporters/icon.png", - "environment": "*", - "entrypoints": { - "main": [ - "moe.nea.funnyteleporters.FunnyTeleporters" - ], - "client": [ - "moe.nea.funnyteleporters.FunnyTeleportersClient" - ] - }, - "mixins": [ - "funny-teleporters.mixins.json", - { - "config": "funny-teleporters.client.mixins.json", - "environment": "client" - } - ], - "depends": { - "fabricloader": ">=0.16.9", - "minecraft": "~1.21", - "java": ">=21", - "fabric-api": "*" - }, - "suggests": { - "another-mod": "*" - } + "schemaVersion": 1, + "id": "funny-teleporters", + "version": "${version}", + "name": "Funny Teleporters", + "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": "CC0-1.0", + "icon": "assets/funny-teleporters/icon.png", + "environment": "*", + "entrypoints": { + "main": [ + "moe.nea.funnyteleporters.FunnyTeleporters" + ], + "client": [ + "moe.nea.funnyteleporters.FunnyTeleportersClient" + ], + "fabric-datagen": [ + "moe.nea.funnyteleporters.FunnyDataGenerator" + ] + }, + "mixins": [ + "funny-teleporters.mixins.json", + { + "config": "funny-teleporters.client.mixins.json", + "environment": "client" + } + ], + "depends": { + "fabricloader": ">=0.16.9", + "minecraft": "~1.21", + "java": ">=21", + "fabric-api": "*" + }, + "suggests": { + "another-mod": "*" + } }
\ No newline at end of file |