{ "name": "codewalk-district", "version": "0.0.1", "description": "Multi-agent workspace for orchestrating multiple Claude Code agents", "type": "module", "main": "./dist/index.js", "bin": { "cw": "./dist/bin/cw.js" }, "scripts": { "build": "tsc", "dev": "tsx watch src/bin/cw.ts", "clean": "rimraf dist", "test": "vitest run", "test:watch": "vitest", "test:coverage": "vitest run --coverage" }, "keywords": [ "claude", "agent", "orchestration", "multi-agent" ], "author": "", "license": "ISC", "dependencies": { "@trpc/server": "^11.9.0", "commander": "^12.1.0", "execa": "^9.5.2", "zod": "^4.3.6" }, "devDependencies": { "@trpc/client": "^11.9.0", "@types/node": "^22.10.7", "rimraf": "^6.0.1", "tsx": "^4.19.2", "typescript": "^5.7.3", "vitest": "^4.0.18" } }