diff options
author | natanfudge <natan.lifsiz@gmail.com> | 2019-07-27 11:36:27 +0300 |
---|---|---|
committer | natanfudge <natan.lifsiz@gmail.com> | 2019-07-27 11:36:27 +0300 |
commit | dfcc029c91454fd9d157c30f524f23c1a0e99ed5 (patch) | |
tree | 45ebc50566882780e4c642471f8e71ff37d714f5 /src/main/resources/fabric.mod.json |
first commit
Diffstat (limited to 'src/main/resources/fabric.mod.json')
-rw-r--r-- | src/main/resources/fabric.mod.json | 36 |
1 files changed, 36 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..24acc5e --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,36 @@ +{ + "schemaVersion": 1, + "id": "modid", + "version": "${version}", + + "name": "Example Mod", + "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/modid/icon.png", + + "environment": "*", + "entrypoints": { + "main": [ + "net.fabricmc.example.ExampleModKt::init" + ] + }, + "mixins": [ + "modid.mixins.json" + ], + + "depends": { + "fabricloader": ">=0.4.0", + "fabric": "*" + }, + "suggests": { + "flamingo": "*" + } +} |