-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.4 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
{
"name": "wasd2021",
"version": "0.1.0",
"description": "A nodecg broadcast graphics bundle for Warwick's Awesome Speedruns & Demos 2021",
"main": "index.js",
"scripts": {
"build": "rollup --config",
"watch": "rollup --config --watch",
"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/issues"
},
"homepage": "https://github.com/jai-x/wasd2021#readme",
"nodecg": {
"compatibleRange": "~1.8.0",
"bundleDependencies": {
"nodecg-speedcontrol": "~2.3.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": "videoPlayer/index.html",
"width": 3,
"name": "videoPlayer",
"title": "Video Player"
}
],
"graphics": [
{
"file": "sixteenNine/index.html",
"width": 1920,
"height": 1010,
"singleInstance": false
},
{
"file": "fourThree/index.html",
"width": 1920,
"height": 1010,
"singleInstance": false
},
{
"file": "break/index.html",
"width": 1920,
"height": 1080,
"singleInstance": false
},
{
"file": "problems/index.html",
"width": 1920,
"height": 1080,
"singleInstance": false
},
{
"file": "bar/index.html",
"width": 1920,
"height": 70,
"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"
}
}