forked from ericthelemur/wasd2022-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 2.94 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
{
"name": "wasd2023-nodecg",
"version": "0.2.0",
"description": "A nodecg broadcast graphics bundle for Warwick's Awesome Speedruns & Demos 2023",
"main": "index.js",
"scripts": {
"build": "rollup --config",
"watch": "rollup --config --watch",
"copy-config": "cp ./cfg/* ../../cfg",
"clean": "rm -rf ./graphics",
"start": "node ../../index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/jai-x/wasd2021.git"
},
"keywords": [
"nodecg"
],
"author": "Jai Sharma <jai@jai.moe>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jai-x/wasd2021-summer/issues"
},
"homepage": "https://github.com/jai-x/wasd2021-summer#readme",
"nodecg": {
"compatibleRange": "~1.9.0",
"bundleDependencies": {
"nodecg-speedcontrol": "^2.4.0",
"nodecg-tiltify": "~0.0.0",
"ncg-spotify": "~1.6.0"
},
"assetCategories": [
{
"name": "specialEffectVideos",
"title": "SpecialEffect Videos",
"allowedTypes": [
"mp4",
"mkv",
"flv",
"webm",
"mov"
]
}
],
"dashboardPanels": [
{
"file": "countdown/index.html",
"width": 2,
"name": "countdown",
"title": "Countdown"
},
{
"file": "cam2/index.html",
"width": 3,
"name": "cam2",
"title": "Cam Control"
},
{
"file": "annBar/index.html",
"width": 3,
"name": "ann",
"title": "Announcements Bar"
}
],
"graphics": [
{
"file": "sixteenNine/index.html",
"width": 1920,
"height": 1080,
"singleInstance": false
},
{
"file": "race/index.html",
"width": 1920,
"height": 1080,
"singleInstance": false
},
{
"file": "fourThree/index.html",
"width": 1920,
"height": 1080,
"singleInstance": false
},
{
"file": "raceFourThree/index.html",
"width": 1920,
"height": 1080,
"singleInstance": false
},
{
"file": "break/index.html",
"width": 1920,
"height": 1080,
"singleInstance": false
},
{
"file": "couch/index.html",
"width": 1920,
"height": 1080,
"singleInstance": false
},
{
"file": "problems/index.html",
"width": 1920,
"height": 1080,
"singleInstance": false
}
]
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-html": "^0.2.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"postcss-url": "^10.1.1",
"rollup": "^2.37.1",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-postcss": "^4.0.0"
},
"dependencies": {
"fitty": "^2.3.3",
"gsap": "^3.6.0",
"lodash": "^4.17.20",
"mithril": "^2.0.4",
"moment": "^2.29.1",
"toastify-js": "^1.12.0"
}
}