Files
cli/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

92 lines
2.3 KiB
JSON

{
"name": "@kevisual/cli",
"version": "0.0.91",
"description": "envision 命令行工具",
"type": "module",
"basename": "/root/cli",
"app": {
"key": "cli",
"entry": "dist/app.mjs",
"type": "pm2-system-app",
"runtime": [
"cli"
]
},
"bin": {
"envision": "bin/envision.js",
"ev": "bin/envision.js",
"assistant": "bin/assistant.js",
"assistant-server": "bin/assistant-server.js",
"asst": "bin/assistant.js",
"asst-server": "bin/assistant-server.js"
},
"exports": {
".": "./dist/assistant-opencode.js"
},
"files": [
"dist",
"bin",
"bun.config.mjs"
],
"scripts": {
"dev": "bun src/run.ts ",
"dev:tsx": "tsx src/run.ts ",
"dev:server": "cd assistant && bun --watch src/run-server.ts ",
"build": "rimraf dist && bun run bun.config.mjs",
"deploy": "ev pack -u -p -m no",
"pub:me": "npm publish --registry https://npm.xiongxiao.me --tag beta",
"postbuild": "cd assistant && pnpm build ",
"dts": "dts-bundle-generator --external-inlines=@types/jsonwebtoken src/index.ts -o dist/index.d.ts "
},
"keywords": [
"kevisual",
"cli"
],
"author": "abearxiong",
"dependencies": {
"@inquirer/prompts": "^8.2.0",
"@kevisual/app": "^0.0.2",
"@kevisual/context": "^0.0.4",
"@kevisual/use-config": "^1.0.28",
"@opencode-ai/sdk": "^1.1.28",
"@types/busboy": "^1.5.4",
"busboy": "^1.6.0",
"eventemitter3": "^5.0.4",
"lowdb": "^7.0.1",
"pm2": "latest",
"lru-cache": "^11.2.4",
"micromatch": "^4.0.8",
"semver": "^7.7.3",
"unstorage": "^1.17.4"
},
"devDependencies": {
"@kevisual/dts": "^0.0.3",
"@kevisual/load": "^0.0.6",
"@kevisual/logger": "^0.0.4",
"@kevisual/query": "0.0.37",
"@kevisual/query-login": "0.0.7",
"@types/bun": "^1.3.6",
"@types/crypto-js": "^4.2.2",
"@types/jsonwebtoken": "^9.0.10",
"@types/micromatch": "^4.0.10",
"@types/node": "^25.0.9",
"@types/semver": "^7.7.1",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"crypto-js": "^4.2.0",
"fast-glob": "^3.3.3",
"filesize": "^11.0.13",
"form-data": "^4.0.5",
"ignore": "^7.0.5",
"jsonwebtoken": "^9.0.3",
"pm2": "^6.0.14",
"tar": "^7.5.6",
"zustand": "^5.0.10"
},
"engines": {
"node": ">=22.0.0"
},
"publishConfig": {
"access": "public"
}
}