{
  "name": "@clerk/testing",
  "version": "1.4.34",
  "description": "Utilities to help you create E2E test suites for apps using Clerk",
  "keywords": [
    "auth",
    "authentication",
    "passwordless",
    "session",
    "jwt",
    "playwright",
    "cypress",
    "testing",
    "e2e"
  ],
  "homepage": "https://clerk.com",
  "bugs": {
    "url": "https://github.com/clerk/javascript/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/clerk/javascript.git",
    "directory": "packages/testing"
  },
  "license": "MIT",
  "author": "Clerk",
  "sideEffects": false,
  "exports": {
    "./playwright": {
      "import": {
        "types": "./dist/types/playwright/index.d.ts",
        "default": "./dist/playwright/index.mjs"
      },
      "require": {
        "types": "./dist/types/playwright/index.d.ts",
        "default": "./dist/playwright/index.js"
      }
    },
    "./cypress": {
      "import": {
        "types": "./dist/types/cypress/index.d.ts",
        "default": "./dist/cypress/index.mjs"
      },
      "require": {
        "types": "./dist/types/cypress/index.d.ts",
        "default": "./dist/cypress/index.js"
      }
    }
  },
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/types/index.d.ts",
  "files": [
    "dist",
    "playwright",
    "cypress"
  ],
  "dependencies": {
    "dotenv": "16.4.7",
    "@clerk/backend": "^1.26.0",
    "@clerk/shared": "^3.3.0",
    "@clerk/types": "^4.50.2"
  },
  "devDependencies": {
    "@playwright/test": "^1.44.0",
    "cypress": "^13.9.0"
  },
  "peerDependencies": {
    "@playwright/test": "^1",
    "cypress": "^13"
  },
  "peerDependenciesMeta": {
    "@playwright/test": {
      "optional": true
    },
    "cypress": {
      "optional": true
    }
  },
  "engines": {
    "node": ">=18.17.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup --env.NODE_ENV production",
    "clean": "rimraf ./dist",
    "dev": "tsup --watch",
    "lint": "eslint src"
  }
}