{
  "name": "cco-cli",
  "version": "1.0.3",
  "description": "Automated orchestration system for managing Claude Code instances to complete complex tasks",
  "main": "dist/index.js",
  "bin": {
    "cco": "dist/cli/index.js",
    "claude-code-orchestrator": "dist/cli/index.js"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsx watch src/cli/index.ts",
    "start": "node dist/cli/index.js",
    "cco": "node -r dotenv/config dist/cli/index.js",
    "test": "vitest",
    "test:coverage": "vitest run --coverage",
    "lint": "eslint src --ext .ts",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist",
    "prepare": "npm run build",
    "prepublishOnly": "npm run clean && npm run build"
  },
  "keywords": [
    "claude",
    "orchestration",
    "automation",
    "ai",
    "llm",
    "openrouter",
    "claude-code",
    "definition-of-done",
    "task-automation"
  ],
  "author": "mivertowski",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mivertowski/cco.git"
  },
  "bugs": {
    "url": "https://github.com/mivertowski/cco/issues"
  },
  "homepage": "https://github.com/mivertowski/cco#readme",
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "@anthropic-ai/claude-code": "^1.0.86",
    "@anthropic-ai/sdk": "^0.20.0",
    "@octokit/rest": "^22.0.0",
    "chalk": "^5.3.0",
    "cli-progress": "^3.12.0",
    "commander": "^11.1.0",
    "dotenv": "^16.4.1",
    "inquirer": "^12.9.3",
    "js-yaml": "^4.1.0",
    "openai": "^4.28.0",
    "ora": "^8.0.1",
    "typeorm": "^0.3.20",
    "uuid": "^9.0.1",
    "winston": "^3.11.0",
    "zod": "^3.22.4"
  },
  "devDependencies": {
    "@types/cli-progress": "^3.11.6",
    "@types/inquirer": "^9.0.7",
    "@types/js-yaml": "^4.0.9",
    "@types/node": "^20.11.20",
    "@types/uuid": "^9.0.8",
    "@typescript-eslint/eslint-plugin": "^7.0.2",
    "@typescript-eslint/parser": "^7.0.2",
    "@vitest/coverage-v8": "^1.6.1",
    "eslint": "^8.57.0",
    "tsconfig-paths": "^4.2.0",
    "tsx": "^4.7.1",
    "typescript": "^5.3.3",
    "vitest": "^1.6.1"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}
