feat: 完善SSH客户端功能 - 移除窗口菜单栏 - 修复终端布局灰色区域 - AI Agent添加API Key配置(支持OpenAI/DeepSeek等) - 监控面板新增进程监控(支持按CPU/内存排序) - 修复.gitignore并移除node_modules跟踪
This commit is contained in:
+17
-4
@@ -4,16 +4,29 @@
|
||||
"description": "SSH Client with AI Agent and System Monitor",
|
||||
"main": "electron/main.js",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vite build",
|
||||
"start": "electron .",
|
||||
"dist": "electron-builder"
|
||||
"electron-dev": "set NODE_ENV=development&& electron .",
|
||||
"app": "vite build && electron .",
|
||||
"dist": "vite build && electron-builder"
|
||||
},
|
||||
"dependencies": {
|
||||
"@ant-design/icons": "^5.3.0",
|
||||
"antd": "^5.15.0",
|
||||
"electron-store": "^8.1.0",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"recharts": "^2.12.0",
|
||||
"ssh2": "^1.16.0",
|
||||
"electron-store": "^8.1.0"
|
||||
"xterm": "^5.3.0",
|
||||
"xterm-addon-fit": "^0.8.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@vitejs/plugin-react": "^4.2.1",
|
||||
"electron": "^28.2.0",
|
||||
"electron-builder": "^24.13.0"
|
||||
"electron-builder": "^24.13.0",
|
||||
"vite": "^5.1.0"
|
||||
},
|
||||
"build": {
|
||||
"appId": "com.sshclient.app",
|
||||
@@ -22,7 +35,7 @@
|
||||
"target": "nsis"
|
||||
},
|
||||
"files": [
|
||||
"public/**/*",
|
||||
"dist/**/*",
|
||||
"electron/**/*"
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user