-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
55 lines (55 loc) · 1.61 KB
/
manifest.json
File metadata and controls
55 lines (55 loc) · 1.61 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
45
46
47
48
49
50
51
52
53
54
55
{
"version": 1,
"scripts": [
{
"id": "train_station",
"name": "Train Station Monitor",
"description": "Monitor and display Create mod train station status",
"file": "payload.lua",
"local_name": "train_station.lua",
"category": "Create Mod",
"requirements": [
"Create train station peripheral",
"Optional: Monitor for display",
"Optional: Speaker for audio"
]
},
{
"id": "mpt_train_station",
"name": "Multiplatform Train Station Monitor",
"description": "Monitor and display Create mod multiplatform train station status",
"file": "mpt_station.lua",
"local_name": "mpt_station.lua",
"category": "Create Mod",
"requirements": [
"Create train station peripheral",
"Optional: Monitor for display",
"Optional: Speaker for audio"
]
},
{
"id": "depot_station",
"name": "Depot Station Controller",
"description": "Minimal depot controller for train assembly/disassembly",
"file": "depot_station.lua",
"local_name": "depot_station.lua",
"category": "Create Mod",
"requirements": [
"Create train station peripheral (depot)",
"Optional: Speaker for audio feedback"
]
},
{
"id": "hello_world",
"name": "Hello World Demo",
"description": "Simple demo script with monitor display",
"file": "hello_world.lua",
"local_name": "hello_world.lua",
"category": "Examples",
"requirements": [
"Optional: Monitor for display"
]
}
],
"default": "mpt_train_station"
}