{
  "name": "@vibe-validate/core",
  "version": "0.20.1",
  "description": "Core validation orchestration engine for vibe-validate",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "validate-result.schema.json"
  ],
  "keywords": [
    "validation",
    "parallel",
    "orchestration",
    "git",
    "cache"
  ],
  "author": "Jeff Dutton",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jdutton/vibe-validate.git",
    "directory": "packages/core"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "strip-ansi": "^7.1.2",
    "yaml": "^2.8.2",
    "zod": "^3.25.76",
    "zod-to-json-schema": "^3.25.0",
    "@vibe-validate/config": "0.20.1",
    "@vibe-validate/git": "0.20.1",
    "@vibe-validate/extractors": "0.20.1",
    "@vibe-validate/utils": "0.20.1"
  },
  "devDependencies": {
    "@types/node": "^20.19.26",
    "typescript": "^5.9.3",
    "vitest": "^3.2.6"
  },
  "scripts": {
    "build": "tsc && node dist/scripts/generate-result-schema.js",
    "dev": "tsc --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit"
  }
}