-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.61 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
{
"name": "nodecg-typescript-starter",
"version": "1.0.0",
"files": [
"dashboard",
"graphics",
"extension.js",
"extension"
],
"nodecg": {
"compatibleRange": "^1.8.1",
"dashboardPanels": [
{
"name": "dashboard",
"title": "Dashboard",
"width": 3,
"file": "dashboard.html"
}
],
"graphics": [
{
"file": "index.html",
"width": 1920,
"height": 1080
}
]
},
"scripts": {
"watch": "npm-run-all -p watch:*",
"watch:extension": "node ./node_modules/typescript/bin/tsc -p ./src/extension --diagnostics --watch",
"watch:dashboard": "node ./node_modules/typescript/bin/tsc -p ./src/dashboard --diagnostics --watch",
"watch:graphics": "node ./node_modules/typescript/bin/tsc -p ./src/graphics --diagnostics --watch",
"watch:copy": "onchange -i ./src -- npm-run-all -s build:copy*",
"build": "npm-run-all -s build:*",
"build:extension": "node ./node_modules/typescript/bin/tsc -p ./src/extension --diagnostics",
"build:dashboard": "node ./node_modules/typescript/bin/tsc -p ./src/dashboard --diagnostics",
"build:graphics": "node ./node_modules/typescript/bin/tsc -p ./src/graphics --diagnostics",
"build:copyhtml": "cpy \"src/**/*.html\" \"./\" --parents",
"build:copycss": "cpy \"src/**/*.css\" \"./\" --parents",
"start:NodeCG": "node ../../index.js"
},
"author": "Mark Schwartzkopf",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"cpy-cli": "^4.1.0",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"typescript": "^4.7.4"
}
}