Files
cli/assistant/package.json
xiongxiao 028a6ac726 feat: restructure command for Claude models and add new remote routes
- Deleted the old cc.ts command and created a new cc.ts under src/command/claude for better organization.
- Added support for a new model 'bailian' in the command.
- Implemented remote app connection status and connection routes in assistant/src/routes/remote/index.ts.
- Updated index.ts to reflect the new path for the cc command.
- Added a placeholder for future management of plugin operations in src/command/opencode/plugin.ts.
2026-01-21 23:22:58 +08:00

93 lines
2.4 KiB
JSON

{
"name": "@kevisual/assistant-cli",
"version": "0.0.7",
"description": "",
"main": "dist/assistant.mjs",
"keywords": [
"kevisual",
"cli",
"assistant"
],
"author": "abearxiong <xiongxiao@xiongxiao.me> (https://www.xiongxiao.me)",
"license": "MIT",
"packageManager": "pnpm@10.28.1",
"type": "module",
"files": [
"dist",
"bin",
"bun.config.mjs",
"libs"
],
"scripts": {
"dev": "bun run src/run.ts ",
"dev:server": "bun --watch src/run-server.ts ",
"dev:cnb": "ASSISTANT_CONFIG_DIR=/workspace bun --watch src/run-server.ts ",
"dev:share": "bun --watch src/test/remote-app.ts ",
"build:lib": "bun run bun-lib.config.mjs",
"postbuild:lib": "dts -i src/lib.ts -o assistant-lib.d.ts -d libs -t",
"build": "rimraf dist && bun run bun.config.mjs"
},
"bin": {
"ev-assistant": "bin/assistant.js",
"ev-asst": "bin/assistant.js"
},
"exports": {
".": {
"import": "./dist/assistant.mjs"
},
"./lib": {
"import": "./libs/assistant-lib.mjs",
"types": "./libs/assistant-lib.d.ts"
}
},
"devDependencies": {
"@kevisual/ai": "^0.0.21",
"@kevisual/api": "^0.0.22",
"@kevisual/load": "^0.0.6",
"@kevisual/local-app-manager": "^0.1.32",
"@kevisual/logger": "^0.0.4",
"@kevisual/query": "0.0.37",
"@kevisual/query-login": "0.0.7",
"@kevisual/router": "^0.0.60",
"@kevisual/types": "^0.0.12",
"@kevisual/use-config": "^1.0.28",
"@opencode-ai/plugin": "^1.1.28",
"@types/bun": "^1.3.6",
"@types/lodash-es": "^4.17.12",
"@types/node": "^25.0.9",
"@types/send": "^1.2.1",
"@types/ws": "^8.18.1",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"cross-env": "^10.1.0",
"dayjs": "^1.11.19",
"dotenv": "^17.2.3",
"get-port": "^7.1.0",
"inquirer": "^13.2.1",
"lodash-es": "^4.17.22",
"nanoid": "^5.1.6",
"send": "^1.2.1",
"supports-color": "^10.2.2",
"table": "^6.9.0",
"ws": "npm:@kevisual/ws"
},
"engines": {
"node": ">=22.0.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.972.0",
"@kevisual/ha-api": "^0.0.6",
"@kevisual/oss": "^0.0.16",
"@kevisual/video-tools": "^0.0.13",
"@opencode-ai/sdk": "^1.1.28",
"es-toolkit": "^1.44.0",
"eventemitter3": "^5.0.4",
"lowdb": "^7.0.1",
"lru-cache": "^11.2.4",
"pm2": "^6.0.14",
"unstorage": "^1.17.4"
}
}