forked from rspier/chrome-stream-deck
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.32 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.32 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
{
"name": "chrome-stream-deck",
"version": "0.0.1",
"main": "index.js",
"license": "Apache-2.0",
"devDependencies": {
"@sofie-automation/code-standard-preset": "^0.2.1",
"@types/chrome": "^0.0.127",
"@types/node": "^14.14.16",
"cpy-cli": "^3.1.1",
"css-loader": "^5.0.1",
"mini-css-extract-plugin": "^1.3.3",
"sass": "^1.35.1",
"sass-loader": "^10.1.0",
"ts-loader": "^8.0.14",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.1.3",
"webpack": "^5.11.0",
"webpack-cli": "^4.3.0",
"yarn-run-all": "^3.1.1"
},
"scripts": {
"build:contentscript-background": "NODE_ENV=production webpack --config webpack.config.js",
"build": "yarn run build:contentscript-background",
"watch:contentscript-background": "NODE_ENV=development webpack --config webpack.config.js -w",
"watch": "npm-run-all --parallel watch:*",
"clean": "rm -rf dist && cpy manifest.json dist && cpy src/assets/* dist/assets",
"prebuild": "yarn run clean",
"prewatch": "yarn run clean",
"lint": "eslint . --ext .ts --ext .js --ignore-pattern dist",
"lint-fix": "yarn lint --fix",
"license-validate": "yarn sofie-licensecheck"
},
"dependencies": {
"@elgato-stream-deck/webhid": "^5.0.0",
"awesome-typescript-loader": "^5.2.1",
"buffer": "^6.0.3"
}
}