-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.04 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.04 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
56
57
58
{
"name": "tutorial-bundle",
"version": "0.0.0",
"files": [
"dashboard",
"graphics",
"extension.js",
"extension"
],
"keywords": [
"",
"nodecg-bundle"
],
"scripts": {
"start": "nodecg start"
},
"nodecg": {
"compatibleRange": "^1.9.0",
"dashboardPanels": [
{
"name": "score",
"title": "Score",
"width": 2,
"file": "score-controls.html",
"headerColor": "#525F78"
},
{
"name": "lowerthird",
"title": "Lower third",
"width": 2,
"file": "lowerthird-controls.html",
"headerColor": "#525F78"
}
],
"graphics": [
{
"file": "scoreboard.html",
"width": 1920,
"height": 1080
},
{
"file": "lowerthird.html",
"width": 1920,
"height": 1080
}
],
"mount": [
{
"directory": "node_modules/gsap",
"endpoint": "node_modules/gsap"
}
]
},
"dependencies": {
"gsap": "^3.6.0",
"nodecg": "^2.6.1"
}
}