first add

This commit is contained in:
Your Name
2026-07-28 21:25:30 +08:00
commit edf4d743cb
482 changed files with 19191 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
{
"name": "ssh-client",
"version": "1.0.0",
"description": "SSH Client with AI Agent and System Monitor",
"main": "electron/main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder"
},
"dependencies": {
"ssh2": "^1.16.0",
"electron-store": "^8.1.0"
},
"devDependencies": {
"electron": "^28.2.0",
"electron-builder": "^24.13.0"
},
"build": {
"appId": "com.sshclient.app",
"productName": "SSH Client",
"win": {
"target": "nsis"
},
"files": [
"public/**/*",
"electron/**/*"
]
}
}