From d6e85e22192c7d824572668f54a5bf81eec3bc78 Mon Sep 17 00:00:00 2001 From: Adrian Siekierka Date: Sun, 7 Apr 2019 19:39:49 +0200 Subject: update to Loader 0.4.0 --- src/main/resources/fabric.mod.json | 33 ++++++++++++++++++++++++++------- 1 file changed, 26 insertions(+), 7 deletions(-) (limited to 'src/main/resources/fabric.mod.json') diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 4b9af9f..26ac594 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -1,17 +1,36 @@ { + "schemaVersion": 1, "id": "modid", + "version": "${version}", + "name": "Example Mod", "description": "This is an example description! Tell everyone what your mod is about!", - "version": "${version}", - "side": "universal", - "initializers": [ - "net.fabricmc.example.ExampleMod" + "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.ExampleMod" + ] + }, + "mixins": [ + "modid.mixins.json" ], + "requires": { + "fabricloader": ">=0.4.0", "fabric": "*" }, - "mixins": { - "client": "modid.client.json", - "common": "modid.common.json" + "suggests": { + "flamingo": "*" } } -- cgit 1.4.1