{
  "name": "@vitalets/global-cache",
  "description": "Key-value cache for sharing data between parallel workers.",
  "version": "0.2.4",
  "type": "commonjs",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vitalets/global-cache.git"
  },
  "main": "dist/index.js",
  "exports": {
    ".": "./dist/index.js",
    "./server": "./dist/server/index.js"
  },
  "typesVersions": {
    "*": {
      "server": [
        "./dist/server/index.d.ts"
      ]
    }
  },
  "engines": {
    "node": ">=18"
  },
  "files": [
    "dist",
    "src",
    "README.md"
  ],
  "scripts": {
    "prepare": "git config core.hooksPath scripts/git-hooks",
    "lint": "eslint .",
    "tsc": "tsc",
    "knip": "knip -c knip.config.ts",
    "prettier": "prettier --check --ignore-unknown .",
    "prettier:w": "prettier --write --ignore-unknown .",
    "test": "vitest run --no-cache --testTimeout 5000 --dir ./test",
    "test:d": "DEBUG=global-cache* npm t",
    "pw": "npm i --no-save @playwright/test@$PW",
    "pw:install": "PLAYWRIGHT_SKIP_BROWSER_GC=1 npx playwright install chromium",
    "toc": "md-magic --files README.md",
    "build": "./scripts/build.sh",
    "release": "release-it"
  },
  "dependencies": {
    "debug": "^4.4.1",
    "express": "^5.1.0",
    "ms": "^2.1.3"
  },
  "devDependencies": {
    "@eslint/compat": "^1.3.2",
    "@eslint/js": "^9.33.0",
    "@playwright/test": "^1.54.2",
    "@release-it/keep-a-changelog": "^7.0.0",
    "@types/debug": "4.1.12",
    "@types/express": "^5.0.3",
    "@types/node": "^18.15.0",
    "eslint": "^9.33.0",
    "eslint-plugin-playwright": "^2.2.2",
    "eslint-plugin-visual-complexity": "0.1.4",
    "globals": "^16.3.0",
    "knip": "^5.62.0",
    "lint-staged": "^16.1.5",
    "markdown-magic": "^3.4.0",
    "prettier": "^3.6.2",
    "publint": "^0.3.7",
    "release-it": "^19.0.4",
    "typescript": "^5.9.2",
    "typescript-eslint": "^8.39.1",
    "vitest": "^3.2.4"
  },
  "keywords": [
    "global cache",
    "global storage",
    "global setup",
    "global teardown",
    "playwright",
    "workers",
    "testing",
    "e2e",
    "performance",
    "optimization"
  ],
  "publishConfig": {
    "access": "public"
  },
  "funding": "https://github.com/sponsors/vitalets",
  "license": "MIT"
}
