-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1018 Bytes
/
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
{
"name": "webpack-example-bundle",
"version": "0.0.0",
"description": "",
"homepage": "",
"author": {
"name": "Tom Bloor",
"email": "[email protected]",
"url": "https://tbsliver.me"
},
"scripts": {
"start": "webpack --watch",
"build": "webpack"
},
"files": [
"dashboard",
"graphics",
"extension"
],
"keywords": [
"nodecg-bundle"
],
"nodecg": {
"compatibleRange": "^1.1.1",
"dashboardPanels": [
{
"name": "panel",
"title": "Panel",
"width": 2,
"file": "panel.html",
"headerColor": "#525F78"
}
],
"graphics": [
{
"file": "index.html",
"width": 1280,
"height": 720
}
]
},
"repository": "https://github.com/TBS-Tutorials/webpack-example-bundle.git",
"license": "MIT",
"devDependencies": {
"css-loader": "^4.3.0",
"html-webpack-plugin": "^4.4.1",
"style-loader": "^1.2.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}