{ "name": "@ai-assistant/server", "version": "1.0.0", "description": "HTTP Server for AI terminal assistant - REST API, WebSocket, SSE", "main": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } }, "scripts": { "build": "tsc", "dev": "tsc --watch", "start": "bun run src/bin/server.ts", "start:dev": "bun --watch run src/bin/server.ts", "test": "vitest run", "test:watch": "vitest" }, "dependencies": { "@ai-assistant/core": "workspace:*", "hono": "^4.6.0", "uuid": "^13.0.0", "zod": "^4.1.13" }, "devDependencies": { "@types/bun": "^1.1.0", "@types/node": "^22.0.0", "@types/uuid": "^10.0.0", "typescript": "^5.6.0", "vitest": "^4.0.15" } }