generated from Fabricators-of-Create/create-fabric-addon-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathfabric.mod.json
More file actions
30 lines (30 loc) · 886 Bytes
/
fabric.mod.json
File metadata and controls
30 lines (30 loc) · 886 Bytes
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
{
"schemaVersion": 1,
"id": "createcustomportalapiintegration",
"version": "${version}",
"name": "Create Custom Portal API Integration",
"description": "A compatibility mod between Create's trains and customportalapi's portals.",
"authors": [
"ReignOfFROZE"
],
"contact": {
"sources": "https://github.com/Fabricators-of-Create/create-fabric-addon-template"
},
"license": "CC0",
"icon": "assets/createcustomportalapiintegration/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"reign.createaddons.customportalapiintegrations.CreateCustomPortalAPIIntegrationMod"
]
},
"mixins": [
"createcustomportalapiintegration.mixins.json"
],
"depends": {
"fabricloader": ">=${fabric_loader_version}",
"fabric-api": ">=${fabric_api_version}",
"create": "${create_version}",
"minecraft": "${minecraft_version}"
}
}