-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.72 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
{
"name": "devplatform",
"version": "1.0.0",
"author": {
"name": "Jonathan Heindl"
},
"main": "./dist/src/src/main.js",
"scripts": {
"watch": "concurrently --kill-others \"npm run watch-preload\" \"npm run watch-pagescript\" \"npm run-script watch-scss\" & ",
"build-pagescript": "cd pagescript && tsc",
"watch-pagescript": "cd pagescript && tsc -w",
"build-preload": "cd preload && tsc",
"watch-preload": "cd preload && tsc -w",
"build-scss": "node_modules\\.bin\\sass --load-path=node_modules/ .\\pagescript\\index.scss dist\\index.css",
"watch-scss": "node_modules\\.bin\\sass --watch --load-path=node_modules/ .\\pagescript\\index.scss dist\\index.css",
"start-electron": "cd ./src && electron --inspect=15858 -r ts-node/register ./main.ts",
"start": "npm run-script build-scss && npm run build-preload && npm run build-pagescript && npm run start-electron",
"pack": "cd src && tsc && cd .. && electron-builder -w",
"dist": "electron-builder"
},
"dependencies": {
"chrome-remote-interface": "^0.33.0",
"concurrently": "^8.2.2",
"express": "^4.18.2",
"express-ws": "^5.0.2",
"node-fetch": "^2",
"sass": "^1.69.5"
},
"devDependencies": {
"@types/chrome-remote-interface": "^0.31.13",
"@types/express": "^4.17.21",
"@types/node": "^20.9.0",
"devtools-protocol": "^0.0.1225305",
"dotenv": "^16.3.1",
"electron": "^27.0.4",
"electron-builder": "^24.9.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"build": {
"appId": "jonathan.dev.platform",
"win": {
"target": "nsis"
},
"files": [
"dist/src/**/*",
"dist/index.css",
"dist/pagescript/**/*",
"dist/preload/**/*"
]
}
}