-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
145 lines (145 loc) · 3.31 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
137
138
139
140
141
142
143
144
145
{
"name": "t3g-streamtools",
"version": "0.0.1",
"description": "",
"homepage": "",
"author": {
"name": "Aivoapina",
"email": "[email protected]"
},
"files": [
"dashboard",
"graphics",
"extension.js",
"extension"
],
"keywords": [
"nodecg-bundle"
],
"nodecg": {
"compatibleRange": "^1.1.1",
"assetCategories": [
{
"name": "logos",
"title": "Logos",
"allowedTypes": [
"jpg",
"jpeg",
"gif",
"png"
]
},
{
"name": "lolbgs",
"title": "LoL Score backgrounds",
"allowedTypes": [
"png"
]
},
{
"name": "twitterbg",
"title": "Tweet background",
"allowedTypes": [
"jpg",
"jpeg",
"gif",
"png"
]
},
{
"name": "fonts",
"title": "Custom fonts",
"allowedTypes": [
"woff",
"woff2"
]
}
],
"dashboardPanels": [
{
"name": "T3G Casters",
"title": "T3G Casters",
"width": 3,
"file": "casters.html",
"headerColor": "#525F78"
},
{
"name": "T3G Scorebar",
"title": "T3G Scorebar",
"width": 3,
"file": "scorebar.html",
"headerColor": "#525F78"
},
{
"name": "T3G Twitter",
"title": "T3G Twitter",
"width": 3,
"file": "twitter.html",
"headerColor": "#525F78"
},
{
"name": "T3G Donatebar",
"title": "T3G Donatebar",
"width": 3,
"file": "donatebar.html",
"headerColor": "#525F78"
}
],
"graphics": [
{
"file": "casters.html",
"width": 1920,
"height": 1080
},
{
"file": "scorebar.html",
"width": 1920,
"height": 1080
},
{
"file": "twitter.html",
"width": 1920,
"height": 1080
},
{
"file": "donatebar.html",
"width": 1920,
"height": 1080
}
]
},
"repository": "https://github.com/Aivoapina/t3g-streamtools",
"license": "MIT",
"resolutions": {
"@babel/preset-env": "7.8.3"
},
"devDependencies": {
"@babel/compat-data": "^7.14.0",
"@babel/core": "^7.14.2",
"@babel/eslint-parser": "^7.14.2",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-class-static-block": "^7.13.11",
"@babel/plugin-proposal-decorators": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"eslint": "^7.26.0",
"eslint-plugin-react": "^7.23.2",
"parcel": "^2.0.0-beta.2"
},
"dependencies": {
"events": "^3.1.0",
"mobx": "^5.15.2",
"mobx-react": "^6.1.5",
"needle": "^2.6.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"styled-components": "^5.0.0"
},
"scripts": {
"start": "parcel watch src/casters.html src/scorebar.html src/twitter.html src/donatebar.html --dist-dir graphics --public-url ./",
"build": "parcel build src/casters.html src/scorebar.html src/twitter.html src/donatebar.html --dist-dir graphics --public-url ./",
"lint": "eslint src/ extensions/",
"lint-fix": "eslint --fix src/ extensions/",
"start-nodecg": "node ../../index.js"
}
}