{
  "name": "@devpilot.sh/cli",
  "version": "0.5.14",
  "description": "DevPilot CLI - Manage your AI coding agent fleet from the command line",
  "license": "MIT",
  "author": "DevPilot Team",
  "repository": {
    "type": "git",
    "url": "https://github.com/devpilot-sh/devpilot-core.git",
    "directory": "packages/cli"
  },
  "homepage": "https://github.com/devpilot-sh/devpilot-core#readme",
  "bugs": {
    "url": "https://github.com/devpilot-sh/devpilot-core/issues"
  },
  "bin": {
    "devpilot": "./bin/devpilot.js"
  },
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "bin",
    "ui",
    "README.md"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "dependencies": {
    "chalk": "^5.3.0",
    "chokidar": "^3.6.0",
    "commander": "^12.0.0",
    "drizzle-orm": "^0.30.0",
    "inquirer": "^9.2.0",
    "open": "^10.0.0",
    "ora": "^8.0.0",
    "pino-pretty": "^13.1.3",
    "update-notifier": "^7.3.1",
    "yaml": "^2.4.0",
    "@devpilot.sh/benchmarks": "0.2.0",
    "@devpilot.sh/bridge-client": "0.3.2",
    "@devpilot.sh/bridge-protocol": "0.3.0",
    "@devpilot.sh/core": "0.3.3",
    "@devpilot.sh/mcp-session": "0.2.0"
  },
  "devDependencies": {
    "@types/inquirer": "^9.0.7",
    "@types/update-notifier": "^6.0.8",
    "tsup": "^8.0.0",
    "typescript": "^5.3.0",
    "vitest": "^1.0.0",
    "postgres": "^3.4.5"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "keywords": [
    "devpilot",
    "ai",
    "coding",
    "agent",
    "fleet",
    "cli",
    "developer-tools",
    "automation"
  ],
  "scripts": {
    "build": "node scripts/sync-version.mjs && tsup",
    "dev": "tsup --watch",
    "typecheck": "tsc --noEmit",
    "start": "node bin/devpilot.js",
    "test": "vitest run --passWithNoTests",
    "harness:dispatch": "node tests/harness/run-local-dispatch.mjs",
    "bundle:cockpit": "node scripts/bundle-cockpit.mjs"
  }
}