da1773b950
- 添加 blessed 终端 UI 库 - 创建 ChatView 组件:支持消息列表和流式输出 - 创建 SessionList 组件:会话管理和快捷键 - 创建 StatusBar 组件:连接状态显示 - 创建 TUIApp 主应用整合所有组件 - 更新 attach 命令支持 --tui/--no-tui 选项 - 添加 CLAUDE.md 项目规范文件 - 修复 Web 前端 CSS prose 类缺失问题
37 lines
810 B
JSON
37 lines
810 B
JSON
{
|
|
"name": "@ai-assistant/cli",
|
|
"version": "1.0.0",
|
|
"description": "AI Terminal Assistant CLI",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"bin": {
|
|
"ai-assistant": "./bin/ai-assistant.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "bun run src/index.ts",
|
|
"start": "bun run dist/index.js",
|
|
"serve": "bun run src/index.ts serve",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@ai-assistant/server": "workspace:*",
|
|
"commander": "^12.1.0",
|
|
"chalk": "^5.3.0",
|
|
"ora": "^8.0.1",
|
|
"inquirer": "^9.2.12",
|
|
"blessed": "^0.1.81"
|
|
},
|
|
"devDependencies": {
|
|
"@types/blessed": "^0.1.25",
|
|
"@types/bun": "^1.1.0",
|
|
"@types/node": "^20.11.0",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"bin"
|
|
]
|
|
}
|