{
  "name": "conductor-cli",
  "version": "1.0.0",
  "description": "🚂🦆 Complete AI Development Choo Choo Train! All aboard the AI Express with rubber ducking that actually responds. Choo choo your way to expert solutions!",
  "main": "dist/index.js",
  "bin": {
    "conductor": "dist/enhanced-cli.js",
    "multi-agent": "dist/cli.js"
  },
  "scripts": {
    "build": "npm run clean && tsc",
    "build:prod": "npm run clean && tsc --removeComments --sourceMap false",
    "clean": "rm -rf dist",
    "prepublishOnly": "npm run build:prod",
    "dev": "tsx src/enhanced-cli.ts",
    "dev:legacy": "tsx src/cli.ts",
    "test": "jest",
    "test:unit": "jest --testPathPattern=unit --coverage",
    "test:integration": "jest --testPathPattern=integration --runInBand",
    "test:e2e": "jest --testPathPattern=e2e --runInBand --timeout=60000",
    "test:performance": "node tests/performance/benchmark.js",
    "test:claude-integration": "jest --testPathPattern=claude-integration --timeout=30000",
    "test:all": "npm run test:unit && npm run test:integration && npm run test:e2e",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "start": "node dist/enhanced-cli.js",
    "start:legacy": "node dist/cli.js",
    "serve": "http-server . -p 3000 -o --cors",
    "dashboard": "tsx src/enhanced-cli.ts dashboard",
    "init": "tsx src/enhanced-cli.ts init",
    "launch": "tsx src/enhanced-cli.ts launch",
    "quick-start": "tsx src/enhanced-cli.ts init --quick",
    "recordings": "bash scripts/generate-recordings.sh",
    "recordings:install": "which vhs || (echo 'Installing VHS...' && (brew install vhs || go install github.com/charmbracelet/vhs@latest))",
    "precommit": "lint-staged"
  },
  "keywords": [
    "conductor-cli",
    "ai-express",
    "train-conductor",
    "rubber-ducking",
    "claude-code-integration",
    "multi-agent-orchestra",
    "ai-development-team",
    "development-conductor",
    "express-workflow",
    "ai-train-crew",
    "developer-tools",
    "github-integration",
    "react-development",
    "nextjs-tools",
    "typescript-assistant",
    "security-scanning",
    "devops-automation",
    "code-review",
    "pair-programming"
  ],
  "author": "Hadi Rickit <team@gallifreyconsulting.com> (https://rickithadi.dev)",
  "license": "ISC",
  "homepage": "https://github.com/rickithadi/multi-agent-workflow#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/rickithadi/multi-agent-workflow.git"
  },
  "bugs": {
    "url": "https://github.com/rickithadi/multi-agent-workflow/issues"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "files": [
    "dist",
    "README.md",
    "INSTALL.md"
  ],
  "type": "commonjs",
  "lint-staged": {
    "src/**/*.{ts,tsx}": [
      "eslint --fix",
      "npm run test:unit -- --passWithNoTests"
    ],
    "tests/**/*.{ts,tsx}": [
      "eslint --fix"
    ],
    "*.{json,md,yml,yaml}": [
      "prettier --write"
    ]
  },
  "dependencies": {
    "@types/blessed": "^0.1.25",
    "blessed": "^0.1.81",
    "blessed-contrib": "^4.11.0",
    "chalk": "^4.1.2",
    "commander": "^11.1.0",
    "fs-extra": "^11.2.0",
    "glob": "^10.3.10",
    "inquirer": "^8.2.6",
    "yaml": "^2.3.4"
  },
  "devDependencies": {
    "@types/fs-extra": "^11.0.4",
    "@types/inquirer": "^8.2.10",
    "@types/jest": "^29.5.8",
    "@types/node": "^20.10.0",
    "@typescript-eslint/eslint-plugin": "^6.12.0",
    "@typescript-eslint/parser": "^6.12.0",
    "eslint": "^8.54.0",
    "http-server": "^14.1.1",
    "husky": "^8.0.3",
    "jest": "^29.7.0",
    "lint-staged": "^15.2.0",
    "ts-jest": "^29.1.1",
    "tsx": "^4.6.0",
    "typescript": "^5.3.2"
  }
}
