-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
56 lines (56 loc) · 1.62 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
53
54
55
56
{
"name": "sshonix",
"version": "0.3.0",
"description": "Hi-End SSH & SFTP client. Focused on UX/UI experience and Performance.",
"main": "dist-electron/main/index.js",
"license": "MIT",
"author": {
"name": "Relloccate",
"email": "[email protected]",
"url": "https://github.com/relloccate"
},
"keywords": [
"ssh",
"terminal",
"sftp",
"ssh-client",
"sftp-client"
],
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:3344/"
}
},
"scripts": {
"dev": "vite",
"build": "node scripts/build.mjs",
"build-and-publish": " node scripts/build.mjs --publish",
"rebuild": "electron-rebuild -f -w node-pty",
"postinstall": "electron-builder install-app-deps",
"preview": "vite preview"
},
"devDependencies": {
"@types/ssh2-sftp-client": "^9.0.3",
"@vitejs/plugin-vue": "^5.0.4",
"electron": "30.0.1",
"electron-builder": "^24.13.3",
"pinia": "^2.1.7",
"postcss-color-mod-function": "^3.0.3",
"postcss-preset-env": "^9.5.9",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vite-plugin-electron": "^0.28.6",
"vite-plugin-electron-renderer": "^0.14.5",
"vite-svg-loader": "^5.1.0",
"vue": "^3.4.25",
"vue-tsc": "^2.0.14",
"vue-router": "^4.3.2",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0"
},
"dependencies": {
"node-pty": "^1.0.0",
"ssh2": "^1.15.0",
"ssh2-sftp-client": "^10.0.3"
}
}