Files
paseo/package.json
Mohamed Boudra 8cf808b14d refactor(agent): consolidate agent system into unified AgentManager with provider-based architecture
Replace separate ACP and agent-types modules with unified AgentManager using provider pattern. Migrate Claude and Codex implementations to provider-specific clients. Streamline session-agent integration, remove old ACP notification types, and introduce agent timeline events. Delete obsolete documentation and test files. Add AgentRegistry for persistence and agent-stream-based communication pattern.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-15 02:06:09 +01:00

41 lines
1.0 KiB
JSON

{
"name": "voice-dev",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/server",
"packages/app"
],
"scripts": {
"dev": "npm run dev --workspace=@voice-dev/server",
"dev:app": "npm run start --workspace=@voice-dev/app",
"build": "npm run build --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"start": "npm run start --workspace=@voice-dev/server",
"android": "npm run android --workspace=@voice-dev/app",
"ios": "npm run ios --workspace=@voice-dev/app",
"web": "npm run web --workspace=@voice-dev/app"
},
"devDependencies": {
"typescript": "^5.9.3"
},
"description": "Voice-controlled development environment with OpenAI Realtime API",
"keywords": [
"openai",
"realtime",
"voice",
"voice-assistant",
"development",
"mcp"
],
"author": "moboudra",
"license": "MIT",
"overrides": {
"lightningcss": "1.30.1"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.37",
"@openai/codex-sdk": "^0.58.0"
}
}