forked from relloccate/sshonix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.89 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
57
58
{
"name": "sshonix",
"version": "0.1.1",
"description": "Hi-End SSH & SFTP client. Focused on UX/UI experience and Performance.",
"keywords": [
"ssh",
"terminal",
"sftp",
"ssh-client",
"sftp-client"
],
"main": "dist/main/index.cjs",
"scripts": {
"dev": "node scripts/watch.mjs",
"rebuild": "electron-rebuild -f -w node-pty",
"xxxx-postinstall": "electron-builder install-app-deps",
"pack-app": "vue-tsc --noEmit --p src/renderer/tsconfig.json && node scripts/build.mjs",
"pack-app-and-publish": "vue-tsc --noEmit --p src/renderer/tsconfig.json && node scripts/build.mjs --publish",
"test-ssh": "nodemon --config ./tests/nodemon.json ./tests/tests/test-ssh.ts"
},
"engines": {
"node": ">=16.0.0"
},
"author": {
"name": "Relloccate",
"email": "[email protected]",
"url": "https://github.com/relloccate"
},
"license": "MIT",
"devDependencies": {
"@types/ssh2": "^1.11.5",
"@types/ssh2-sftp-client": "^7.1.0",
"@vitejs/plugin-vue": "^3.1.0",
"electron": "19.0.10",
"electron-builder": "^23.1.0",
"electron-devtools-installer": "^3.2.0",
"electron-rebuild": "^3.2.8",
"postcss-color-mod-function": "^3.0.3",
"postcss-preset-env": "^7.8.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.2",
"vite": "^3.1.0",
"vite-plugin-electron": "^0.9.2",
"vite-plugin-electron-renderer": "^0.9.0",
"vite-svg-loader": "^3.6.0",
"vue-tsc": "^0.40.12"
},
"dependencies": {
"@imengyu/vue3-context-menu": "^1.1.1",
"node-pty": "^0.10.1",
"pinia": "^2.0.22",
"ssh2": "^1.11.0",
"ssh2-sftp-client": "^9.0.4",
"vue": "^3.2.38",
"xterm": "^4.19.0",
"xterm-addon-web-links": "^0.6.0"
}
}