-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathfabric.mod.json
More file actions
executable file
·35 lines (35 loc) · 909 Bytes
/
fabric.mod.json
File metadata and controls
executable file
·35 lines (35 loc) · 909 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
31
32
33
34
35
{
"schemaVersion": 1,
"id": "lightoverlay",
"name": "Light Overlay",
"description": "To provide users with NEI-like light overlay.",
"version": "${version}",
"environment": "client",
"authors": [
"shedaniel"
],
"contact": {
"homepage": "https://www.curseforge.com/minecraft/mc-mods/light-overlay",
"sources": "https://github.com/shedaniel/LightOverlay-Fabric",
"issues": "https://github.com/shedaniel/LightOverlay-Fabric/issues"
},
"entrypoints": {
"client": [
"me.shedaniel.lightoverlay.fabric.LightOverlayImpl::init"
],
"modmenu": [
"me.shedaniel.lightoverlay.fabric.LOModMenuEntry"
]
},
"license": "Apache-2.0",
"icon": "icon.png",
"mixins": [
"lightoverlay.mixins.json"
],
"accessWidener": "lightoverlay.accesswidener",
"depends": {
"fabric": ">=0.29.1",
"architectury": ">=2-",
"cloth-config2": ">=5-"
}
}