{ "name": "ccw", "version": "6.2.0", "description": "Claude Code Workflow CLI - Dashboard viewer for workflow sessions and reviews", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "ccw": "./bin/ccw.js", "ccw-mcp": "./bin/ccw-mcp.js" }, "scripts": { "build": "tsc", "dev": "tsx watch src/cli.ts", "test": "node --test tests/*.test.js", "test:codexlens": "node --test tests/codex-lens*.test.js", "test:mcp": "node --test tests/mcp-server.test.js", "lint": "eslint src/" }, "keywords": [ "claude", "workflow", "cli", "dashboard", "code-review" ], "author": "Claude Code Workflow", "license": "MIT", "engines": { "node": ">=16.0.0" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.0.4", "better-sqlite3": "^11.7.0", "boxen": "^7.1.0", "chalk": "^5.3.0", "commander": "^11.0.0", "figlet": "^1.7.0", "glob": "^10.3.0", "gradient-string": "^2.0.2", "inquirer": "^9.2.0", "open": "^9.1.0", "ora": "^7.0.0", "zod": "^4.1.13" }, "files": [ "bin/", "dist/", "src/", "README.md", "LICENSE" ], "repository": { "type": "git", "url": "https://github.com/claude-code-workflow/ccw" }, "devDependencies": { "@types/better-sqlite3": "^7.6.12", "@types/gradient-string": "^1.1.6", "@types/inquirer": "^9.0.9", "@types/node": "^25.0.1", "tsx": "^4.21.0", "typescript": "^5.9.3" } }