-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.26 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
{
"name": "tm-stream-widgets",
"version": "2.0.0",
"main": "index.js",
"author": "John Holbrook",
"license": "MIT",
"private": true,
"scripts": {
"build-gui": "webpack --mode production && npx nodegui-packer --pack ./dist && copy-display-files.bat && node change_icon.js",
"build-display-win": "pkg -t node14-win-x64 -o ./display.exe ./src/display/main.js",
"build-display-mac": "pkg -t node14-macos-x64 -o ./display-mac ./src/display/main.js",
"build-display": "npm run build-display-win && npm run build-display-mac",
"build": "npm run build-display && npm run build-gui",
"start": "npm run build-display && qode ./src/index.js",
"debug": "webpack && qode --inspect ./dist/index.js"
},
"dependencies": {
"@nodegui/nodegui": "^0.36.0",
"axios": "^0.24.0",
"bootstrap": "^5.1.3",
"form-data": "^4.0.0",
"jsdom": "^19.0.0",
"protobufjs": "^7.2.4",
"socket.io": "^4.4.0",
"ws": "^8.3.0",
"yargs": "^17.3.0"
},
"devDependencies": {
"@nodegui/packer": "^1.5.0",
"@types/node": "^16.4.13",
"clean-webpack-plugin": "^3.0.0",
"file-loader": "^6.2.0",
"native-addon-loader": "^2.0.1",
"rcedit": "^3.0.1",
"ts-loader": "^9.2.5",
"webpack": "^5.49.0",
"webpack-cli": "^4.7.2"
}
}