-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.82 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.82 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "sothx-remote-desk",
"version": "1.0.1",
"description": "",
"main": "app/main/index.js",
"scripts": {
"postinstall": "electron-rebuild",
"test": "echo \"Error: no test specified\" && exit 1",
"start:main": "electron .",
"start": "cross-env concurrently \"pnpm start:render\" \"cross-env wait-on http://127.0.0.1:3000 && pnpm start:main\" ",
"start:render": "cd app/renderer/src/main && pnpm start:no-browser",
"build": "cd app/renderer/src/main && pnpm run build",
"pack:win": "pnpm run build && electron-builder --win"
},
"keywords": [],
"author": "sothx",
"license": "ISC",
"dependencies": {
"@electron/remote": "^2.1.0",
"about-window": "^1.15.2",
"cross-env": "^7.0.3",
"debug": "^4.3.4",
"electron-is-dev": "^2.0.0",
"electron-squirrel-startup": "^1.0.0",
"robotjs": "^0.6.0",
"vkey": "^1.0.1",
"ws": "^8.14.2"
},
"build": {
"appId": "com.sothx.remotedesk",
"productName": "sothxRemoteDesk",
"files": "app",
"asar": false,
"extraFiles": [
"app/renderer/**/src"
],
"directories": {
"buildResources": "resource",
"output": "release"
},
"copyright": "Copyright © 2023 sothx",
"win": {
"icon": "resources/icon.ico",
"target": [
"squirrel",
"nsis"
]
},
"nsis": {
"oneClick": false,
"language": "2052",
"perMachine": true,
"allowToChangeInstallationDirectory": true
},
"squirrelWindows": {
"iconUrl": "https://raw.githubusercontent.com/dengyaolong/geektime-electron/master/img/icon.ico"
}
},
"devDependencies": {
"@electron/rebuild": "^3.3.0",
"concurrently": "^8.2.2",
"electron": "27.1.3",
"electron-builder": "^24.6.4",
"electron-builder-squirrel-windows": "^24.9.1",
"wait-on": "^7.0.1"
}
}