Files
Codewalkers/package.json
Lukas May 03d55276a6 chore(01.1-01): install and configure Vitest test framework
- Add vitest as dev dependency
- Create vitest.config.ts with globals, TypeScript support, coverage
- Add npm scripts: test, test:watch, test:coverage
2026-01-30 13:53:00 +01:00

41 lines
881 B
JSON

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