This repository has been archived by the owner on Mar 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
113 lines (113 loc) · 2.48 KB
/
package.json
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "kotn-graphics-bundle",
"version": "0.0.0",
"description": "Graphics for King of the North VI",
"author": {
"name": "Dan Shields",
"email": "d@shieldsuk.me"
},
"scripts": {
"start": "npm run bundle",
"postinstall": "npm run build",
"bundle": "node script/bundle.js",
"build": "set NODE_ENV=production && npm run bundle"
},
"files": [
"dashboard",
"graphics",
"extension.js",
"extension"
],
"keywords": [
"nodecg-bundle"
],
"nodecg": {
"compatibleRange": "^1.2.2",
"dashboardPanels": [
{
"name": "timer",
"title": "Timer",
"width": 2,
"file": "timer-ctrl.html",
"headerColor": "#525F78",
"workspace": "Main"
},
{
"name": "spotlight-ctrl",
"title": "Spotlight",
"width": 4,
"file": "spotlight-ctrl.html",
"headerColor": "#525F78",
"workspace": "Main"
},
{
"name": "lower-third-ctrl",
"title": "Main Control",
"width": 2,
"file": "lower-third-ctrl.html",
"headerColor": "#525F78",
"workspace": "Lower Third"
},
{
"name": "timer-dialog",
"title": "Set Timer",
"width": 4,
"dialog": true,
"dialogButtons": [
{
"name": "set",
"type": "confirm"
},
{
"name": "cancel",
"type": "dismiss"
}
],
"file": "timer-dialog.html"
},
{
"name": "timer-dialog-exact",
"title": "Set Timer",
"width": 4,
"dialog": true,
"dialogButtons": [
{
"name": "set",
"type": "confirm"
},
{
"name": "cancel",
"type": "dismiss"
}
],
"file": "timer-dialog-exact.html"
}
],
"graphics": [
{
"file": "timer.html",
"width": 1920,
"height": 1080
}
]
},
"private": true,
"dependencies": {
"@chenfengyuan/vue-number-input": "^0.5.2",
"clone": "^2.1.2",
"gsap": "^2.0.2",
"nanotimer": "^0.3.15",
"vue": "^2.5.17",
"vue-hot-reload-api": "^2.3.0",
"vuetify": "^1.3.8"
},
"devDependencies": {
"@vue/component-compiler-utils": "^2.2.0",
"eslint": "^5.4.0",
"node-sass": "^4.10.0",
"parcel-bundler": "^1.9.7",
"sass": "^1.14.3",
"sass-loader": "^7.1.0",
"vue-template-compiler": "^2.5.17"
}
}