{
  "name": "@global-cache/playwright",
  "description": "Key-value cache for sharing data between Playwright workers.",
  "version": "0.5.1",
  "type": "commonjs",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "engines": {
    "node": ">=20"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vitalets/global-cache.git"
  },
  "files": [
    "dist",
    "src",
    "README.md"
  ],
  "dependencies": {
    "@global-cache/core": "0.5.1"
  },
  "keywords": [
    "playwright",
    "performance",
    "global cache",
    "global storage",
    "global setup",
    "global teardown",
    "workers",
    "optimization",
    "testing",
    "e2e"
  ],
  "publishConfig": {
    "access": "public"
  },
  "funding": "https://github.com/sponsors/vitalets",
  "license": "MIT",
  "scripts": {
    "tsc": "tsc",
    "build": "tsc -p tsconfig.build.json",
    "test": "npx playwright test -c ./test/playwright.config.ts",
    "test:d": "DEBUG=global-cache* npm t",
    "toc": "remark README.md --frail -o"
  }
}