-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.21 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.21 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
{
"private": true,
"workspaces": {
"packages": [
"config-loader",
"eslint-config",
"prettier-config",
"logging",
"android-auto-proto",
"common-ipc",
"electron-ipc",
"electron-ipc-preload",
"socket-ipc",
"android-auto",
"node-common",
"node",
"electron",
"web"
]
},
"scripts": {
"build": "npm run build --workspaces",
"clean": "npm run clean --workspaces",
"lint": "npm run lint --workspaces --if-present",
"start-electron": "npm run start -w electron",
"start-node": "npm run start -w node",
"start-web": "npm run start -w web",
"dev-web": "npm run dev -w web",
"prepare-electron": "electron-rebuild -f -m node_modules/bluetooth-socket && electron-rebuild -f -m node_modules/usocket",
"prepare-node": "npm rebuild",
"dev": "tspc -b --watch"
},
"dependencies": {
"typia": "^6.10.0"
},
"devDependencies": {
"@electron/rebuild": "^3.6.0",
"@tsconfig/node20": "^20.1.4",
"@types/native-duplexpair": "^1.0.0",
"@types/node": "^20.12.13",
"@webgpu/types": "^0.1.42",
"electron": "^30.0.9",
"eslint": "^9.12.0",
"ts-patch": "^3.2.1",
"typescript": "^5.5.4"
}
}