-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathfabric.mod.json
More file actions
44 lines (39 loc) · 1.06 KB
/
fabric.mod.json
File metadata and controls
44 lines (39 loc) · 1.06 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
{
"schemaVersion": 1,
"id": "station-api-base",
"version": "${version}",
"name": "Station API Base",
"description": "Contains the essentials for Station API modules, such as an event bus.",
"authors": [
"Modification Station"
],
"contact": {
"homepage": "https://glass-launcher.net/repo/mod/stationapi",
"sources": "https://github.com/ModificationStation/StationAPI",
"issues": "https://github.com/ModificationStation/StationAPI/issues"
},
"license": "MIT",
"icon": "assets/station-api-base/icon.png",
"environment": "*",
"mixins": [
"station-api-base.mixins.json"
],
"entrypoints": {
"preLaunch": [
"net.modificationstation.stationapi.api.StationAPI"
],
"spasm:transformer": [
"net.modificationstation.stationapi.impl.transform.UnsafeEventsIntegration"
],
"stationapi:event_bus": [
"net.modificationstation.stationapi.impl.mod.DeprecatedInitEventsImpl"
]
},
"depends": {
"fabricloader": "*",
"minecraft": "1.0.0-beta.7.3"
},
"custom": {
"modmenu:api": true
}
}