{
  "name": "@rickcedwhat/playwright-smart-vision",
  "version": "0.4.0",
  "description": "Computer-vision and OCR-based element assertions for Playwright — local, fast, no GPT Vision required",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./test": {
      "import": "./dist/ocr-test.js",
      "types": "./dist/ocr-test.d.ts"
    },
    "./configure": {
      "import": "./dist/configure.js",
      "types": "./dist/configure.d.ts"
    },
    "./author": {
      "import": "./dist/author/index.js",
      "types": "./dist/author/index.d.ts"
    },
    "./utils/ocr": {
      "import": "./dist/utils/ocr.js",
      "types": "./dist/utils/ocr.d.ts"
    },
    "./utils/vision": {
      "import": "./dist/utils/vision.js",
      "types": "./dist/utils/vision.d.ts"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsc",
    "typecheck": "tsc --noEmit",
    "test:unit": "vitest run",
    "test:e2e": "playwright test",
    "serve": "node scripts/serve-fixtures.mjs",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "playwright",
    "ocr",
    "computer-vision",
    "visual-testing",
    "tesseract",
    "opencv"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/rickcedwhat/playwright-smart-vision"
  },
  "author": "rickcedwhat",
  "license": "MIT",
  "peerDependencies": {
    "@playwright/test": ">=1.50.0"
  },
  "peerDependenciesMeta": {
    "@playwright/test": {
      "optional": true
    }
  },
  "dependencies": {
    "@techstark/opencv-js": "^5.0.0-release.1",
    "pixelmatch": "^7.2.0",
    "pngjs": "^7.0.0",
    "tesseract.js": "^7.0.0"
  },
  "devDependencies": {
    "@playwright/test": "^1.62.1",
    "@types/node": "^26.2.0",
    "@types/pngjs": "^6.0.5",
    "typescript": "^5.8.0",
    "vitest": "^3.0.0"
  }
}
