"feat: 增加助手应用配置管理功能与服务器守护进程支持"

This commit is contained in:
2025-04-27 00:35:44 +08:00
parent bcc12209e0
commit f2abfbf17c
27 changed files with 658 additions and 102 deletions

View File

@@ -19,7 +19,7 @@
],
"scripts": {
"dev": "bun run src/run.ts ",
"dev:server": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 bun --watch src/server.ts",
"dev:server": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 bun --watch src/run-server.ts",
"build": "rimraf dist && bun run bun.config.mjs"
},
"bin": {
@@ -27,6 +27,7 @@
"ev-asst": "bin/assistant.js"
},
"devDependencies": {
"@kevisual/ai-center": "^0.0.3",
"@kevisual/load": "^0.0.6",
"@kevisual/local-app-manager": "^0.1.16",
"@kevisual/query": "0.0.17",
@@ -41,6 +42,8 @@
"chalk": "^5.4.1",
"commander": "^13.1.0",
"cross-env": "^7.0.3",
"dotenv": "^16.5.0",
"get-port": "^7.1.0",
"inquirer": "^12.6.0",
"lodash-es": "^4.17.21",
"nanoid": "^5.1.5",
@@ -49,6 +52,7 @@
"send": "^1.2.0",
"supports-color": "^10.0.0",
"ws": "npm:@kevisual/ws",
"dayjs": "^1.11.13",
"zustand": "^5.0.3"
},
"engines": {
@@ -58,9 +62,11 @@
"access": "public"
},
"dependencies": {
"dayjs": "^1.11.13"
"pm2": "^6.0.5"
},
"overrides": {
"ws": "npm:@kevisual/ws"
"ws": "npm:@kevisual/ws",
"@kevisual/query": "0.0.17",
"@kevisual/router": "0.0.13"
}
}