-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.35 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.35 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
{
"name": "ssh-client",
"version": "1.0.0",
"config": {
"react-wrapper-directory": "./src/renderer/react-wrapper"
},
"scripts": {
"postinstall": "npm install @nexus-app/nexus-client@latest",
"preinstall": "cd %npm_package_config_react-wrapper-directory% && npm install",
"start": "npm-run-all --parallel vite:start electron-start",
"export": "npm run vite:build && node node_modules/@nexus-app/nexus-exporter/exporter.js",
"export:dev": "npm run vite:build && node node_modules/@nexus-app/nexus-exporter/exporter.js --dev",
"export:output-dir": "node node_modules/@nexus-app/nexus-exporter/exporter.js --default-location",
"vite:build": "cd %npm_package_config_react-wrapper-directory% && npm run build",
"vite:start": "cd %npm_package_config_react-wrapper-directory% && npm run dev",
"electron-start": "npm run export:dev && cd ./node_modules/@nexus-app/nexus-client/ && npm start"
},
"devDependencies": {
"@nexus-app/nexus-client": "^0.1.4",
"@types/express": "^5.0.3",
"@types/ssh2": "^1.15.5",
"@types/ws": "^8.18.1",
"@types/yauzl-promise": "^4.0.1",
"electron": "^35.1.5",
"install": "^0.13.0",
"npm": "^11.2.0",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.2",
"typescript": "^4.8.3"
},
"dependencies": {
"express": "^4.18.2",
"ssh2": "^1.16.0",
"ws": "^8.18.2"
}
}