-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
103 lines (103 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
103
{
"name": "twitch-bundle",
"version": "1.1.0",
"description": "NodeCG Twitch Bundle for various endpoints",
"homepage": "",
"scripts": {
"start": "webpack --watch",
"build": "webpack"
},
"files": [
"dashboard",
"extension"
],
"keywords": [
"nodecg-bundle"
],
"nodecg": {
"compatibleRange": ">1.1.1",
"dashboardPanels": [
{
"name": "twitch-auth",
"title": "Twitch Auth",
"width": 2,
"workspace": "Settings",
"file": "twitch-auth.html",
"headerColor": "#764dc1"
},
{
"name": "twitch-events",
"title": "Twitch Events",
"width": 4,
"workspace": "Settings",
"file": "twitch-events.html",
"headerColor": "#764dc1"
},
{
"name": "test-twitch",
"title": "Twitch Testing",
"width": 2,
"workspace": "Settings",
"file": "test-twitch.html",
"headerColor": "#764dc1"
},
{
"name": "twitch-clips",
"title": "Twitch Clips",
"width": 4,
"workspace": "Settings",
"file": "twitch-clips.html",
"headerColor": "#764dc1"
},
{
"name": "twitch-hello",
"title": "Twitch Hello",
"width": 2,
"workspace": "Settings",
"file": "twitch-hello.html",
"headerColor": "#764dc1"
}
],
"graphics": [
{
"file": "twitch-clips.html",
"width": 1920,
"height": 1080
},
{
"file": "twitch-chat.html",
"width": 1920,
"height": 1080
}
]
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.12.1",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/urijs": "^1.19.14",
"animate.css": "^4.1.1",
"babel-loader": "^8.1.0",
"babel-plugin-add-module-exports": "^1.0.4",
"css-loader": "^4.3.0",
"dayjs": "^1.10.4",
"html-webpack-plugin": "^4.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"style-loader": "^1.2.1",
"ts-loader": "^8.0.18",
"typescript": "^4.2.3",
"use-nodecg": "^0.4.1-1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"@twurple/api": "^5.1.6",
"@twurple/auth": "^5.1.6",
"@twurple/chat": "^5.1.6",
"@twurple/pubsub": "^5.1.6",
"urijs": "^1.19.6"
}
}