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
136 lines (136 loc) · 3.05 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "kotn-graphics-bundle",
"version": "1.0.1",
"description": "Graphics for King of the North VI Showdown",
"author": {
"name": "Dan Shields",
"email": "d@shieldsuk.me"
},
"license": "AGPL-3.0-or-later",
"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.3.0",
"dashboardPanels": [
{
"name": "timer",
"title": "Timer",
"width": 2,
"file": "timer-ctrl.html",
"headerColor": "#525F78",
"workspace": "1: Main"
},
{
"name": "lower-third-ctrl",
"title": "Main Control",
"width": 2,
"file": "lower-third-ctrl.html",
"headerColor": "#525F78",
"workspace": "2: Lower Third"
},
{
"name": "staff-ctrl",
"title": "Staff List",
"width": 3,
"file": "staff-ctrl.html",
"headerColor": "#525F78",
"workspace": "2: Lower Third"
},
{
"name": "caster-ctrl",
"title": "Casters",
"width": 3,
"file": "caster-ctrl.html",
"headerColor": "#525F78",
"workspace": "2: Lower Third"
},
{
"name": "desk-ctrl",
"title": "Desk",
"width": 3,
"file": "desk-ctrl.html",
"headerColor": "#525F78",
"workspace": "2: 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
},
{
"file": "lower-third.html",
"width": 1920,
"height": 1080,
"singleInstance": true
}
]
},
"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",
"vue-select": "^2.5.1",
"vuetify": "^1.3.8"
},
"devDependencies": {
"@vue/component-compiler-utils": "^2.2.0",
"eslint": "^5.4.0",
"parcel-bundler": "^1.9.7",
"sass": "^1.14.3",
"sass-loader": "^7.1.0",
"vue-template-compiler": "^2.5.17"
}
}