{
  "name": "@stablyai/playwright-test",
  "version": "2.1.16",
  "description": "Playwright Test wrapper with Stably AI matchers",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./reporter": {
      "import": {
        "types": "./dist/reporter.d.mts",
        "default": "./dist/reporter.mjs"
      },
      "require": {
        "types": "./dist/reporter.d.cts",
        "default": "./dist/reporter.cjs"
      }
    }
  },
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "@stablyai/playwright": "2.1.16",
    "@stablyai/playwright-base": "2.1.16"
  },
  "devDependencies": {
    "@stablyai-internal/api-client": "^0.1.7",
    "@stablyai/playwright-reporter": "1.3.7"
  },
  "peerDependencies": {
    "@playwright/test": "^1.52.0"
  },
  "scripts": {
    "build": "pkgroll --clean-dist --sourcemap --target=node20 -i dist/create-suite.mjs --define.__PACKAGE_VERSION__=$(node -p \"JSON.stringify(require('./package.json').version)\") && node ../../scripts/add-dts-banner.mjs",
    "test": "vitest",
    "test:public-types": "pnpm --filter @stablyai/playwright-reporter build && pnpm build && tsc -p tsconfig.public-api.json --noEmit --pretty false",
    "test:e2e": "playwright test"
  }
}