{
  "version": "2.1.0",
  "description": "LRU Cache that is safe for clusters, based on lru-cache. Save memory by only caching items on the main thread via a promisified interface.",
  "type": "module",
  "sideEffects": false,
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=22"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/doublesharp/lru-cache-clustered.git"
  },
  "bugs": {
    "url": "https://github.com/doublesharp/lru-cache-clustered/issues"
  },
  "homepage": "https://github.com/doublesharp/lru-cache-clustered#readme",
  "keywords": [
    "lru",
    "mru",
    "cache",
    "lru-cache",
    "cluster",
    "promise",
    "typescript",
    "ipc"
  ],
  "author": "Justin Silver",
  "license": "MIT",
  "dependencies": {
    "debug": "^4.4.3"
  },
  "peerDependencies": {
    "lru-cache": "^11"
  },
  "name": "lru-cache-for-clusters-as-promised"
}
