generated from Fabricators-of-Create/create-multiloader-addon-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfabric.mod.json
32 lines (32 loc) · 807 Bytes
/
fabric.mod.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"schemaVersion": 1,
"id": "examplemod",
"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": "Insert License Here",
"icon": "assets/examplemod/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"net.examplemod.fabric.ExampleModFabric"
]
},
"mixins": [
"examplemod.mixins.json",
"examplemod-common.mixins.json"
],
"depends": {
"minecraft": "${minecraft_version}",
"fabricloader": ">=${fabric_loader_version}",
"fabric-api": ">=${fabric_api_version}",
"create": "${create_version}"
}
}