-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.66 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.66 KB
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
{
"name": "parcel-setup-bundle",
"version": "0.0.0",
"description": "",
"homepage": "",
"author": {
"name": "Tom Bloor",
"email": "tom@tbsliver.me",
"url": "https://tbsliver.me"
},
"files": [
"dashboard",
"graphics",
"extension.js",
"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/nodecg/nodecg.git",
"license": "MIT",
"devDependencies": {
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.4"
},
"scripts": {
"watch": "npm-run-all --parallel watch:**",
"watch:graphics": "parcel watch src/graphics/**/*.html --out-dir graphics --public-url /bundles/parcel-setup-bundle/graphics",
"watch:dashboard": "parcel watch src/dashboard/**/*.html --out-dir dashboard --public-url /bundles/parcel-setup-bundle/dashboard",
"watch:extension": "parcel watch src/extension/index.js --out-dir extension --target node",
"build": "npm-run-all --parallel build:**",
"build:graphics": "parcel build src/graphics/**/*.html --out-dir graphics --public-url /bundles/parcel-setup-bundle/graphics",
"build:dashboard": "parcel build src/dashboard/**/*.html --out-dir dashboard --public-url /bundles/parcel-setup-bundle/dashboard",
"build:extension": "parcel build src/extension/index.js --out-dir extension --target node"
}
}