{ "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" ] }