@nestjs-redisx/core 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "@nestjs-redisx/core",
3
+ "version": "1.0.0",
4
+ "description": "Core module with driver abstraction and plugin system for NestJS RedisX",
5
+ "author": "NestJS RedisX Contributors",
6
+ "license": "MIT",
7
+ "main": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "require": "./dist/index.js",
13
+ "import": "./dist/index.js",
14
+ "default": "./dist/index.js"
15
+ }
16
+ },
17
+ "files": [
18
+ "dist",
19
+ "README.md",
20
+ "LICENSE"
21
+ ],
22
+ "scripts": {
23
+ "build": "tsup",
24
+ "build:watch": "tsup --watch",
25
+ "test": "SKIP_INTEGRATION=true vitest run",
26
+ "test:watch": "SKIP_INTEGRATION=true vitest",
27
+ "test:cov": "SKIP_INTEGRATION=true vitest run --coverage",
28
+ "test:integration": "vitest run --config vitest.integration.config.ts",
29
+ "clean": "rm -rf dist"
30
+ },
31
+ "keywords": [
32
+ "nestjs",
33
+ "redis",
34
+ "core",
35
+ "driver",
36
+ "plugin"
37
+ ],
38
+ "repository": {
39
+ "type": "git",
40
+ "url": "https://github.com/nestjs-redisx/nestjs-redisx.git",
41
+ "directory": "packages/core"
42
+ },
43
+ "homepage": "https://nestjs-redisx.dev/en/reference/core/",
44
+ "bugs": {
45
+ "url": "https://github.com/nestjs-redisx/nestjs-redisx/issues"
46
+ },
47
+ "peerDependencies": {
48
+ "@nestjs/common": "^10.0.0",
49
+ "@nestjs/core": "^10.0.0",
50
+ "reflect-metadata": "^0.2.0",
51
+ "rxjs": "^7.8.0"
52
+ },
53
+ "devDependencies": {
54
+ "@nestjs/common": "^10.3.0",
55
+ "@nestjs/core": "^10.3.0",
56
+ "@nestjs/testing": "^10.3.0",
57
+ "ioredis": "^5.9.2",
58
+ "redis": "^5.10.0",
59
+ "reflect-metadata": "^0.2.1",
60
+ "rxjs": "^7.8.1",
61
+ "tsup": "^8.0.1",
62
+ "typescript": "^5.3.3",
63
+ "vitest": "^1.2.0"
64
+ },
65
+ "publishConfig": {
66
+ "access": "public"
67
+ }
68
+ }