summaryrefslogtreecommitdiff
path: root/src/main/resources/fabric.mod.json
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources/fabric.mod.json')
-rw-r--r--src/main/resources/fabric.mod.json33
1 files changed, 26 insertions, 7 deletions
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": "*"
}
}