UNPKG

cache-manager

Version:
81 lines 1.81 kB
{ "name": "cache-manager", "version": "6.4.2", "description": "Cache Manager for Node.js", "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "require": "./dist/index.cjs", "import": "./dist/index.js" } }, "files": [ "dist", "LICENSE" ], "repository": { "type": "git", "url": "git+https://github.com/jaredwray/cacheable.git", "directory": "packages/cache-manager" }, "keywords": [ "cache", "caching", "cache manager", "node", "node.js", "in-memory cache", "redis", "memcached", "multi-store cache", "ttl", "caching layer", "cache abstraction", "cache middleware", "cache strategies", "cache wrapper" ], "authors": [ { "name": "Jared Wray", "email": "me@jaredwray.com" }, { "name": "Tim Phan", "email": "timphan.dev@gmail.com" } ], "license": "MIT", "dependencies": { "keyv": "^5.3.2" }, "devDependencies": { "@faker-js/faker": "^9.6.0", "@keyv/redis": "^4.3.2", "@types/node": "^22.14.0", "@vitest/coverage-v8": "^3.1.1", "cache-manager-redis-yet": "^5.1.5", "rimraf": "^6.0.1", "tsup": "^8.4.0", "typescript": "^5.8.2", "vitest": "^3.1.1", "xo": "^0.60.0", "cacheable": "^1.8.10" }, "xo": { "rules": { "@typescript-eslint/no-unsafe-call": "off", "@typescript-eslint/no-unsafe-assignment": "off" } }, "scripts": { "clean": "rimraf ./dist ./coverage ./node_modules", "test": "xo --fix && vitest run --coverage", "test:ci": "xo && vitest run", "build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean", "prepublish": "pnpm run build" } }