UNPKG

@nestjs-redis/client

Version:

Flexible, production-ready Redis client module for NestJS with multi-connection support, built on the modern node-redis client

90 lines 2.24 kB
{ "name": "@nestjs-redis/client", "version": "0.10.1", "license": "MIT", "author": "Saba Pochkhua <saba.pochkhua@gmail.com> (https://github.com/CSenshi)", "description": "Flexible, production-ready Redis client module for NestJS with multi-connection support, built on the modern node-redis client", "keywords": [ "nestjs", "redis", "client", "database", "cache", "typescript", "node-redis", "multi-connection" ], "homepage": "https://github.com/CSenshi/nestjs-redis/tree/main/packages/client", "main": "./src/index.js", "module": "./src/index.js", "types": "./src/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "development": "./src/index.ts", "types": "./src/index.d.ts", "import": "./src/index.js", "default": "./src/index.js" } }, "files": [ "src", "!**/*.tsbuildinfo" ], "nx": { "name": "client", "tags": [ "scope:client", "type:library", "platform:node", "framework:nestjs", "database:redis" ], "targets": { "test:int": { "executor": "@nx/jest:jest", "options": { "jestConfig": "packages/client/jest.int.config.ts", "passWithNoTests": true } }, "build": { "executor": "@nx/js:tsc", "outputs": [ "{options.outputPath}" ], "options": { "outputPath": "dist/packages/client", "tsConfig": "packages/client/tsconfig.lib.json", "packageJson": "packages/client/package.json", "main": "packages/client/src/index.ts", "assets": [ "packages/client/*.md", "LICENSE" ] } } } }, "dependencies": { "tslib": "^2.8.0" }, "devDependencies": { "@nestjs/testing": "^11.0.0" }, "peerDependencies": { "@nestjs/common": "^9.0.0 || ^10.0.0 || ^11.0.0", "@nestjs/core": "^9.0.0 || ^10.0.0 || ^11.0.0", "redis": "^5.0.0" }, "engines": { "node": ">=18.0.0", "npm": ">=8.0.0" }, "repository": { "type": "git", "url": "https://github.com/CSenshi/nestjs-redis", "directory": "packages/client" }, "type": "commonjs" }