{
  "name": "playwright-json-runner",
  "version": "2.0.6",
  "description": "Extends Playwright to run tests using JSON-based test definitions.",
  "module": "dist/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/acostmig/json-test-runner.git"
  },
  "scripts": {
    "build": "tsup",
    "build-pack": "tsup && npm pack",
    "start": "node dist/index.js",
    "dev": "tsup --watch",
    "dump-schema": "ts-node src/scripts/cli.ts dump-json-schema schema.local.json"
  },
  "keywords": [
    "playwright",
    "test-runner",
    "automation",
    "json",
    "testing",
    "e2e",
    "end-to-end",
    "headless",
    "browser-testing"
  ],
  "author": "Miguel Acosta",
  "license": "ISC",
  "peerDependencies": {
    "playwright": "^1.50.1"
  },
  "bin": {
    "playwright-json-runner": "dist/scripts/cli.js"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js.map",
      "types": "./dist/index.d.ts",
      "require": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./schemas": {
      "types": "./dist/schemas/index.d.ts",
      "import": "./dist/schemas/index.mjs",
      "require": "./dist/schemas/index.js"
    },
    "./runner-playwright": "./dist/runner-playwright.js",
    "./package.json": "./package.json"
  },
  "publishConfig": {
    "provenance": true
  },
  "files": [
    "dist"
  ],
  "devDependencies": {
    "@playwright/test": "^1.50.1",
    "@types/jsdom": "^28.0.1",
    "@types/node": "^22.13.5",
    "ts-node": "^10.9.2",
    "tsup": "^8.3.6",
    "typescript": "^5.7.3"
  },
  "dependencies": {
    "cosmiconfig": "^9.0.0",
    "glob": "^11.0.1",
    "jsdom": "^25.0.1",
    "zod": "^3.24.2",
    "zod-to-json-schema": "^3.24.3"
  }
}
