{
  "name": "@testrelic/playwright-analytics",
  "version": "2.11.1",
  "description": "Playwright test analytics reporter with E2E navigation tracking, API call capture, network stats, failure diagnostics, and interactive HTML reports",
  "keywords": [
    "playwright",
    "test",
    "analytics",
    "reporter",
    "api-testing",
    "e2e-testing",
    "navigation",
    "network",
    "html-report",
    "test-results",
    "api-tracking",
    "assertions",
    "redaction",
    "ci",
    "testing",
    "test-automation",
    "playwright-reporter"
  ],
  "author": "TestRelic AI <hello@testrelic.ai>",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    "./reporter": {
      "import": {
        "types": "./dist/reporter-entry.d.ts",
        "default": "./dist/reporter-entry.js"
      },
      "require": {
        "types": "./dist/reporter-entry.d.cts",
        "default": "./dist/reporter-entry.cjs"
      }
    },
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./fixture": {
      "import": {
        "types": "./dist/fixture.d.ts",
        "default": "./dist/fixture.js"
      },
      "require": {
        "types": "./dist/fixture.d.cts",
        "default": "./dist/fixture.cjs"
      }
    },
    "./fixture/cjs": {
      "types": "./dist/fixture.d.cts",
      "default": "./dist/fixture.cjs"
    },
    "./api-fixture": {
      "import": {
        "types": "./dist/api-fixture.d.ts",
        "default": "./dist/api-fixture.js"
      },
      "require": {
        "types": "./dist/api-fixture.d.cts",
        "default": "./dist/api-fixture.cjs"
      }
    },
    "./api-fixture/cjs": {
      "types": "./dist/api-fixture.d.cts",
      "default": "./dist/api-fixture.cjs"
    },
    "./merge": {
      "import": {
        "types": "./dist/merge.d.ts",
        "default": "./dist/merge.js"
      },
      "require": {
        "types": "./dist/merge.d.cts",
        "default": "./dist/merge.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "bin": {
    "testrelic": "./dist/cli.cjs"
  },
  "files": [
    "dist",
    "scripts",
    "timeline-schema.json",
    "README.md"
  ],
  "peerDependencies": {
    "@playwright/test": ">=1.35.0"
  },
  "dependencies": {
    "@testrelic/core": "2.4.11"
  },
  "devDependencies": {
    "@playwright/test": "^1.35.0",
    "@types/node": "^18.0.0",
    "typescript": "^5.5.0",
    "tsup": "^8.0.0",
    "vitest": "^2.0.0"
  },
  "engines": {
    "node": ">=18"
  },
  "license": "MIT",
  "homepage": "https://testrelic.ai",
  "publishConfig": {
    "registry": "https://registry.npmjs.org",
    "access": "public"
  },
  "scripts": {
    "build": "tsup",
    "postinstall": "node scripts/postinstall.cjs",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:integration": "vitest run --config vitest.integration.config.ts",
    "typecheck": "tsc --noEmit",
    "test:e2e": "pnpm run build && npx playwright test --config __tests__/e2e/playwright.config.ts",
    "test:e2e:validate": "npx tsx __tests__/e2e/validate-report.ts"
  }
}