{
  "name": "cache-manager",
  "version": "5.7.6",
  "description": "Cache module for Node.js",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist/**/*.js",
    "dist/**/*.d.ts",
    "LISCENCE"
  ],
  "engines": {
    "node": ">= 18"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/jaredwray/cacheable.git"
  },
  "keywords": [
    "cache",
    "redis",
    "lru-cache",
    "memory cache",
    "multiple cache"
  ],
  "authors": [
    {
      "name": "Jared Wray",
      "email": "me@jaredwray.com"
    },
    {
      "name": "Bryan Donovan"
    },
    {
      "name": "Juan Aguilar Santillana",
      "email": "mhpoin@gmail.com"
    }
  ],
  "license": "MIT",
  "dependencies": {
    "eventemitter3": "^5.0.1",
    "lodash.clonedeep": "^4.5.0",
    "lru-cache": "^10.2.2",
    "promise-coalesce": "^1.1.2"
  },
  "devDependencies": {
    "@faker-js/faker": "^8.4.1",
    "@types/lodash.clonedeep": "^4.5.9",
    "@types/node": "^22.0.0",
    "@typescript-eslint/eslint-plugin": "^7.17.0",
    "@typescript-eslint/parser": "^7.17.0",
    "@vitest/coverage-v8": "^2.0.5",
    "eslint-config-xo-typescript": "^5.0.0",
    "rimraf": "^6.0.1",
    "typescript": "^5.5.4",
    "vitest": "^2.0.5",
    "xo": "^0.59.3"
  },
  "xo": {
    "extends": "xo-typescript",
    "extensions": [
      "ts",
      "tsx"
    ],
    "rules": {
      "@typescript-eslint/use-unknown-in-catch-callback-variable": "off",
      "promise/prefer-await-to-then": "off",
      "no-promise-executor-return promise/param-names": "off",
      "promise/param-names": "off",
      "no-promise-executor-return": "off",
      "@typescript-eslint/only-throw-error": "off",
      "promise/valid-params": "off",
      "n/file-extension-in-import": "off"
    }
  },
  "scripts": {
    "build": "rimraf ./dist && tsc -p tsconfig.build.json",
    "clean": "rimraf ./dist ./coverage ./node_modules ./package-lock.json ./yarn.lock ./pnpm-lock.yaml",
    "test": "xo --fix && vitest run --coverage",
    "test:ci": "xo && vitest run"
  }
}