{
  "name": "@aiready/doc-drift",
  "version": "0.14.32",
  "description": "AI-Readiness: Documentation Drift Detection",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "dependencies": {
    "@typescript-eslint/typescript-estree": "^8.58.0",
    "commander": "^14.0.3",
    "glob": "^13.0.6",
    "picocolors": "^1.1.1",
    "@aiready/core": "0.29.10"
  },
  "devDependencies": {
    "@types/node": "^24.12.2",
    "@typescript-eslint/types": "^8.58.0",
    "tsup": "^8.5.1",
    "typescript": "^6.0.2",
    "vitest": "^4.1.4"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    }
  },
  "scripts": {
    "build": "tsup src/index.ts src/cli.ts --format cjs,esm --dts",
    "dev": "tsup src/index.ts src/cli.ts --format cjs,esm --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "lint": "eslint src --ext .ts",
    "type-check": "tsc --noEmit",
    "format-check": "prettier --check . --ignore-path ../../.prettierignore",
    "format": "prettier --write . --ignore-path ../../.prettierignore",
    "lint:fix": "eslint . --fix",
    "test:coverage": "vitest run --coverage"
  }
}