{
  "name": "@vibe-validate/cli",
  "version": "0.19.6",
  "description": "Command-line interface for vibe-validate validation framework",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "vibe-validate": "./dist/bin/vibe-validate",
    "vv": "./dist/bin/vv"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "config-templates",
    "watch-pr-result.schema.json",
    "run-result.schema.json",
    "README.md"
  ],
  "keywords": [
    "validation",
    "testing",
    "ci-cd",
    "git",
    "caching",
    "pre-commit",
    "typescript",
    "javascript",
    "ai-agent-friendly",
    "claude-code",
    "cursor",
    "aider",
    "developer-experience",
    "developer-tools",
    "automation",
    "workflow",
    "llm",
    "cli"
  ],
  "author": "Jeff Dutton",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jdutton/vibe-validate.git",
    "directory": "packages/cli"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "chalk": "^5.6.2",
    "commander": "^12.1.0",
    "prompts": "^2.4.2",
    "proper-lockfile": "^4.1.2",
    "semver": "^7.7.3",
    "yaml": "^2.8.2",
    "zod": "^3.25.76",
    "zod-to-json-schema": "^3.25.0",
    "@vibe-validate/config": "0.19.6",
    "@vibe-validate/core": "0.19.6",
    "@vibe-validate/git": "0.19.6",
    "@vibe-validate/history": "0.19.6",
    "@vibe-validate/extractors": "0.19.6"
  },
  "devDependencies": {
    "@types/node": "^20.19.26",
    "@types/prompts": "^2.4.9",
    "@types/proper-lockfile": "^4.1.4",
    "@types/semver": "^7.7.1",
    "typescript": "^5.9.3",
    "vitest": "^2.1.9",
    "@vibe-validate/utils": "0.19.6"
  },
  "scripts": {
    "build": "tsc && node scripts/prepare-bin.js && node dist/scripts/generate-watch-pr-schema.js && node dist/scripts/generate-run-result-schema.js",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src/ --max-warnings 0"
  }
}