@skalfa/skalfa-cache 1.0.0 → 1.0.4

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.
@@ -0,0 +1,40 @@
1
+ name: Publish to npm
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+ - master
8
+
9
+ jobs:
10
+ publish:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout repository
14
+ uses: actions/checkout@v4
15
+
16
+ - name: Setup Node.js
17
+ uses: actions/setup-node@v4
18
+ with:
19
+ node-version: 20
20
+ registry-url: https://registry.npmjs.org/
21
+
22
+ - name: Setup Bun
23
+ uses: oven-sh/setup-bun@v1
24
+ with:
25
+ bun-version: latest
26
+
27
+ - name: Publish if version bumped
28
+ run: |
29
+ LOCAL_VER=$(node -p "require('./package.json').version")
30
+ NPM_VER=$(npm view @skalfa/skalfa-cache version 2>/dev/null || echo "0.0.0")
31
+ if [ "$LOCAL_VER" != "$NPM_VER" ]; then
32
+ echo "Publishing @skalfa/skalfa-cache $LOCAL_VER (Registry version: $NPM_VER)"
33
+ bun install
34
+ npm run build
35
+ npm publish --access public
36
+ else
37
+ echo "@skalfa/skalfa-cache is up to date ($LOCAL_VER)"
38
+ fi
39
+ env:
40
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -0,0 +1,45 @@
1
+ # Contributing to @skalfa/skalfa-cache
2
+
3
+ Thank you for your interest in contributing to Skalfa! We welcome contributions from the community to help make Skalfa the premier development framework.
4
+
5
+ ## How to Contribute
6
+
7
+ To contribute to this package, please follow these standard open-source steps:
8
+
9
+ ### 1. Fork the Repository
10
+ Fork the official Skalfa repository on GitHub to your personal account.
11
+
12
+ ### 2. Clone Your Fork
13
+ Clone your personal fork to your local machine:
14
+ ```bash
15
+ git clone https://github.com/your-username/skalfa.git
16
+ cd skalfa
17
+ ```
18
+
19
+ ### 3. Create a Feature Branch
20
+ Create a new branch for your feature or bugfix:
21
+ ```bash
22
+ git checkout -b feature/amazing-new-feature
23
+ ```
24
+ *(Use `bugfix/issue-description` for bugfixes).*
25
+
26
+ ### 4. Implement and Commit Your Changes
27
+ Make your changes in the codebase. Write clean, formatted code and ensure all tests and typechecks pass. Commit your changes using semantic commit messages:
28
+ ```bash
29
+ git commit -m "feat: add amazing new feature"
30
+ ```
31
+ *(Use `fix: description` for bugfixes, and `docs: description` for documentation updates).*
32
+
33
+ ### 5. Push to GitHub
34
+ Push your branch to your personal fork on GitHub:
35
+ ```bash
36
+ git push origin feature/amazing-new-feature
37
+ ```
38
+
39
+ ### 6. Submit a Pull Request (PR)
40
+ Go to the official Skalfa repository on GitHub. You will see a prompt to submit a pull request. Click "New Pull Request", describe your changes in detail, link any related issues, and submit it for review by the maintainers.
41
+
42
+ ## Guidelines
43
+ * **Code Style**: Ensure your code conforms to the project's ESLint rules and formatting guidelines.
44
+ * **Type Safety**: Write strict, type-safe TypeScript. Do not bypass the compiler.
45
+ * **Testing**: Run local tests and verify that the build compiles with 0 errors before submitting a PR.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Skalfa
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,54 @@
1
+ <p align="center">
2
+ <img src="https://skalfa.sejedigital.com/images/logo-skalfa.png" alt="Skalfa Logo" width="300" />
3
+ </p>
4
+
5
+ # @skalfa/skalfa-cache
6
+
7
+ > Redis-backed high-performance client-side and server-side caching extension for Skalfa backend services.
8
+
9
+ ---
10
+
11
+ ## About this Package
12
+
13
+ This package is part of the **Skalfa Framework**, a premium development ecosystem designed to build high-performance, modular web applications and APIs.
14
+
15
+ ### Usage Scope & Standalone Status
16
+ > 🔒 **Skalfa Ecosystem Integration:** This package is designed to run **integrated within the Skalfa ecosystem** (such as Skalfa API or Skalfa App). It relies on the global service registry and core framework abstractions to operate.
17
+
18
+ ---
19
+
20
+ ## Documentation
21
+
22
+ See the usage documentation at [Documentation](https://skalfa.sejedigital.com).
23
+
24
+ ---
25
+
26
+ ## Installation
27
+
28
+ You can install this package using your preferred package manager:
29
+
30
+ ```bash
31
+ # Using npm
32
+ npm install @skalfa/skalfa-cache
33
+
34
+ # Using bun
35
+ bun add @skalfa/skalfa-cache
36
+ ```
37
+
38
+ ---
39
+
40
+ ## Pre-installed Dependencies
41
+
42
+ The following key dependencies are packaged and managed within this project:
43
+
44
+ | Dependency | Scope | Version |
45
+ | :--- | :--- | :--- |
46
+ | `@skalfa/skalfa-redis` | runtime | `file:../skalfa-redis` |
47
+ | `@types/node` | development | `^26.0.0` |
48
+ | `typescript` | development | `^6.0.3` |
49
+
50
+ ---
51
+
52
+ ## License
53
+
54
+ This package is licensed under the **MIT License**. For full license text, see the [LICENSE](LICENSE) file.
@@ -0,0 +1 @@
1
+ export declare function clear(type: string, prefix: string): Promise<void>;
package/dist/clear.js ADDED
@@ -0,0 +1,8 @@
1
+ import { redis } from "@skalfa/skalfa-redis";
2
+ export async function clear(type, prefix) {
3
+ const keyPrefix = `${type}:${prefix}:*`;
4
+ const keys = await redis.keys(keyPrefix);
5
+ if (keys.length)
6
+ await redis.del(keys);
7
+ }
8
+ //# sourceMappingURL=clear.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"clear.js","sourceRoot":"","sources":["../src/clear.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,sBAAsB,CAAC;AAE7C,MAAM,CAAC,KAAK,UAAU,KAAK,CAAC,IAAY,EAAE,MAAc;IACtD,MAAM,SAAS,GAAG,GAAG,IAAI,IAAI,MAAM,IAAI,CAAA;IACvC,MAAM,IAAI,GAAG,MAAM,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAA;IACxC,IAAI,IAAI,CAAC,MAAM;QAAE,MAAM,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;AACxC,CAAC"}
package/dist/get.d.ts ADDED
@@ -0,0 +1 @@
1
+ export declare function get<T>(key: string): Promise<T | null>;
package/dist/get.js ADDED
@@ -0,0 +1,13 @@
1
+ import { redis } from "@skalfa/skalfa-redis";
2
+ export async function get(key) {
3
+ const cached = await redis.get(key);
4
+ if (!cached)
5
+ return null;
6
+ try {
7
+ return JSON.parse(cached);
8
+ }
9
+ catch {
10
+ return null;
11
+ }
12
+ }
13
+ //# sourceMappingURL=get.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get.js","sourceRoot":"","sources":["../src/get.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,sBAAsB,CAAC;AAE7C,MAAM,CAAC,KAAK,UAAU,GAAG,CAAI,GAAW;IACtC,MAAM,MAAM,GAAG,MAAM,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IACpC,IAAI,CAAC,MAAM;QAAE,OAAO,IAAI,CAAC;IACzB,IAAI,CAAC;QACH,OAAO,IAAI,CAAC,KAAK,CAAC,MAAM,CAAM,CAAC;IACjC,CAAC;IAAC,MAAM,CAAC;QACP,OAAO,IAAI,CAAC;IACd,CAAC;AACH,CAAC"}
package/dist/index.d.ts CHANGED
@@ -1,6 +1,10 @@
1
+ import { makeKey } from "./make-key";
2
+ import { get } from "./get";
3
+ import { set } from "./set";
4
+ import { clear } from "./clear";
1
5
  export declare const cache: {
2
- makeKey(type: string, prefix: string, query: any): string;
3
- get<T>(key: string): Promise<T | null>;
4
- set(key: string, value: any, expired: number): Promise<void>;
5
- clear(type: string, prefix: string): Promise<void>;
6
+ makeKey: typeof makeKey;
7
+ get: typeof get;
8
+ set: typeof set;
9
+ clear: typeof clear;
6
10
  };
package/dist/index.js CHANGED
@@ -1,41 +1,23 @@
1
- import { redis } from "@skalfa/skalfa-redis";
1
+ import { makeKey } from "./make-key";
2
+ import { get } from "./get";
3
+ import { set } from "./set";
4
+ import { clear } from "./clear";
2
5
  export const cache = {
3
6
  // =============================>
4
7
  // ## Cache: Make key of cache database
5
8
  // =============================>
6
- makeKey(type, prefix, query) {
7
- const keyParts = typeof query === "object" ? JSON.stringify(query) : String(query);
8
- return `${type}:${prefix}:${Buffer.from(keyParts).toString("base64")}`;
9
- },
9
+ makeKey,
10
10
  // =============================>
11
11
  // ## Cache: Get cache with key
12
12
  // =============================>
13
- async get(key) {
14
- const cached = await redis.get(key);
15
- if (!cached)
16
- return null;
17
- try {
18
- return JSON.parse(cached);
19
- }
20
- catch {
21
- return null;
22
- }
23
- },
13
+ get,
24
14
  // =============================>
25
15
  // ## Cache: Set cache record
26
16
  // =============================>
27
- async set(key, value, expired) {
28
- const ttl = expired ?? 60;
29
- await redis.set(key, JSON.stringify(value), "EX", ttl);
30
- },
17
+ set,
31
18
  // =============================>
32
19
  // ## Cache: Set cache record
33
20
  // =============================>
34
- async clear(type, prefix) {
35
- const keyPrefix = `${type}:${prefix}:*`;
36
- const keys = await redis.keys(keyPrefix);
37
- if (keys.length)
38
- await redis.del(keys);
39
- }
21
+ clear,
40
22
  };
41
23
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,sBAAsB,CAAC;AAE7C,MAAM,CAAC,MAAM,KAAK,GAAG;IACnB,iCAAiC;IACjC,uCAAuC;IACvC,iCAAiC;IACjC,OAAO,CAAC,IAAY,EAAE,MAAc,EAAE,KAAU;QAC9C,MAAM,QAAQ,GAAG,OAAO,KAAK,KAAK,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QACnF,OAAO,GAAG,IAAI,IAAI,MAAM,IAAI,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE,CAAC;IACzE,CAAC;IAID,iCAAiC;IACjC,+BAA+B;IAC/B,iCAAiC;IACjC,KAAK,CAAC,GAAG,CAAI,GAAW;QACtB,MAAM,MAAM,GAAG,MAAM,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;QACpC,IAAI,CAAC,MAAM;YAAE,OAAO,IAAI,CAAC;QACzB,IAAI,CAAC;YACH,OAAO,IAAI,CAAC,KAAK,CAAC,MAAM,CAAM,CAAC;QACjC,CAAC;QAAC,MAAM,CAAC;YACP,OAAO,IAAI,CAAC;QACd,CAAC;IACH,CAAC;IAID,iCAAiC;IACjC,6BAA6B;IAC7B,iCAAiC;IACjC,KAAK,CAAC,GAAG,CAAC,GAAW,EAAE,KAAU,EAAE,OAAe;QAChD,MAAM,GAAG,GAAG,OAAO,IAAI,EAAE,CAAC;QAC1B,MAAM,KAAK,CAAC,GAAG,CAAC,GAAG,EAAE,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,EAAE,IAAI,EAAE,GAAG,CAAC,CAAC;IACzD,CAAC;IAID,iCAAiC;IACjC,6BAA6B;IAC7B,iCAAiC;IACjC,KAAK,CAAC,KAAK,CAAC,IAAY,EAAE,MAAc;QACtC,MAAM,SAAS,GAAG,GAAG,IAAI,IAAI,MAAM,IAAI,CAAA;QACvC,MAAM,IAAI,GAAG,MAAM,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAA;QACxC,IAAI,IAAI,CAAC,MAAM;YAAE,MAAM,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;IACxC,CAAC;CACF,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AACrC,OAAO,EAAE,GAAG,EAAE,MAAM,OAAO,CAAC;AAC5B,OAAO,EAAE,GAAG,EAAE,MAAM,OAAO,CAAC;AAC5B,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAEhC,MAAM,CAAC,MAAM,KAAK,GAAG;IACnB,iCAAiC;IACjC,uCAAuC;IACvC,iCAAiC;IACjC,OAAO;IAEP,iCAAiC;IACjC,+BAA+B;IAC/B,iCAAiC;IACjC,GAAG;IAEH,iCAAiC;IACjC,6BAA6B;IAC7B,iCAAiC;IACjC,GAAG;IAEH,iCAAiC;IACjC,6BAA6B;IAC7B,iCAAiC;IACjC,KAAK;CACN,CAAA"}
@@ -0,0 +1 @@
1
+ export declare function makeKey(type: string, prefix: string, query: any): string;
@@ -0,0 +1,5 @@
1
+ export function makeKey(type, prefix, query) {
2
+ const keyParts = typeof query === "object" ? JSON.stringify(query) : String(query);
3
+ return `${type}:${prefix}:${Buffer.from(keyParts).toString("base64")}`;
4
+ }
5
+ //# sourceMappingURL=make-key.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"make-key.js","sourceRoot":"","sources":["../src/make-key.ts"],"names":[],"mappings":"AAAA,MAAM,UAAU,OAAO,CAAC,IAAY,EAAE,MAAc,EAAE,KAAU;IAC9D,MAAM,QAAQ,GAAG,OAAO,KAAK,KAAK,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;IACnF,OAAO,GAAG,IAAI,IAAI,MAAM,IAAI,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE,CAAC;AACzE,CAAC"}
package/dist/set.d.ts ADDED
@@ -0,0 +1 @@
1
+ export declare function set(key: string, value: any, expired: number): Promise<void>;
package/dist/set.js ADDED
@@ -0,0 +1,6 @@
1
+ import { redis } from "@skalfa/skalfa-redis";
2
+ export async function set(key, value, expired) {
3
+ const ttl = expired ?? 60;
4
+ await redis.set(key, JSON.stringify(value), "EX", ttl);
5
+ }
6
+ //# sourceMappingURL=set.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"set.js","sourceRoot":"","sources":["../src/set.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,sBAAsB,CAAC;AAE7C,MAAM,CAAC,KAAK,UAAU,GAAG,CAAC,GAAW,EAAE,KAAU,EAAE,OAAe;IAChE,MAAM,GAAG,GAAG,OAAO,IAAI,EAAE,CAAC;IAC1B,MAAM,KAAK,CAAC,GAAG,CAAC,GAAG,EAAE,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,EAAE,IAAI,EAAE,GAAG,CAAC,CAAC;AACzD,CAAC"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@skalfa/skalfa-cache",
3
- "version": "1.0.0",
4
- "description": "Cache utility package for Skalfa API framework using Redis.",
3
+ "version": "1.0.4",
4
+ "description": "Redis-backed high-performance client-side and server-side caching extension for Skalfa backend services.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "scripts": {
@@ -14,9 +14,9 @@
14
14
  "skalfa"
15
15
  ],
16
16
  "author": "",
17
- "license": "UNLICENSED",
17
+ "license": "MIT",
18
18
  "dependencies": {
19
- "@skalfa/skalfa-redis": "file:../skalfa-redis"
19
+ "@skalfa/skalfa-redis": "^1.0.0"
20
20
  },
21
21
  "devDependencies": {
22
22
  "@types/node": "^26.0.0",
package/src/clear.ts ADDED
@@ -0,0 +1,7 @@
1
+ import { redis } from "@skalfa/skalfa-redis";
2
+
3
+ export async function clear(type: string, prefix: string): Promise<void> {
4
+ const keyPrefix = `${type}:${prefix}:*`
5
+ const keys = await redis.keys(keyPrefix)
6
+ if (keys.length) await redis.del(keys)
7
+ }
package/src/get.ts ADDED
@@ -0,0 +1,11 @@
1
+ import { redis } from "@skalfa/skalfa-redis";
2
+
3
+ export async function get<T>(key: string): Promise<T | null> {
4
+ const cached = await redis.get(key);
5
+ if (!cached) return null;
6
+ try {
7
+ return JSON.parse(cached) as T;
8
+ } catch {
9
+ return null;
10
+ }
11
+ }
package/src/index.ts CHANGED
@@ -1,47 +1,26 @@
1
- import { redis } from "@skalfa/skalfa-redis";
1
+ import { makeKey } from "./make-key";
2
+ import { get } from "./get";
3
+ import { set } from "./set";
4
+ import { clear } from "./clear";
2
5
 
3
6
  export const cache = {
4
7
  // =============================>
5
8
  // ## Cache: Make key of cache database
6
9
  // =============================>
7
- makeKey(type: string, prefix: string, query: any): string {
8
- const keyParts = typeof query === "object" ? JSON.stringify(query) : String(query);
9
- return `${type}:${prefix}:${Buffer.from(keyParts).toString("base64")}`;
10
- },
11
-
12
-
10
+ makeKey,
13
11
 
14
12
  // =============================>
15
13
  // ## Cache: Get cache with key
16
14
  // =============================>
17
- async get<T>(key: string): Promise<T | null> {
18
- const cached = await redis.get(key);
19
- if (!cached) return null;
20
- try {
21
- return JSON.parse(cached) as T;
22
- } catch {
23
- return null;
24
- }
25
- },
26
-
27
-
15
+ get,
28
16
 
29
17
  // =============================>
30
18
  // ## Cache: Set cache record
31
19
  // =============================>
32
- async set(key: string, value: any, expired: number): Promise<void> {
33
- const ttl = expired ?? 60;
34
- await redis.set(key, JSON.stringify(value), "EX", ttl);
35
- },
36
-
37
-
20
+ set,
38
21
 
39
22
  // =============================>
40
23
  // ## Cache: Set cache record
41
24
  // =============================>
42
- async clear(type: string, prefix: string) {
43
- const keyPrefix = `${type}:${prefix}:*`
44
- const keys = await redis.keys(keyPrefix)
45
- if (keys.length) await redis.del(keys)
46
- }
25
+ clear,
47
26
  }
@@ -0,0 +1,4 @@
1
+ export function makeKey(type: string, prefix: string, query: any): string {
2
+ const keyParts = typeof query === "object" ? JSON.stringify(query) : String(query);
3
+ return `${type}:${prefix}:${Buffer.from(keyParts).toString("base64")}`;
4
+ }
package/src/set.ts ADDED
@@ -0,0 +1,6 @@
1
+ import { redis } from "@skalfa/skalfa-redis";
2
+
3
+ export async function set(key: string, value: any, expired: number): Promise<void> {
4
+ const ttl = expired ?? 60;
5
+ await redis.set(key, JSON.stringify(value), "EX", ttl);
6
+ }
package/bun.lock DELETED
@@ -1,42 +0,0 @@
1
- {
2
- "lockfileVersion": 1,
3
- "workspaces": {
4
- "": {
5
- "name": "@skalfa/skalfa-cache",
6
- "dependencies": {
7
- "@skalfa/skalfa-redis": "file:../skalfa-redis",
8
- },
9
- "devDependencies": {
10
- "@types/node": "^26.0.0",
11
- "typescript": "^6.0.3",
12
- },
13
- },
14
- },
15
- "packages": {
16
- "@ioredis/commands": ["@ioredis/commands@1.10.0", "", {}, "sha512-UmeW7z4LfctwoQ5wkhVzgq8tXkreED2xZGpX+Bg+zA+WJFZCT6c062AfCK/Dfk81xZnnwdhJCUMkitihRaoC2Q=="],
17
-
18
- "@skalfa/skalfa-redis": ["@skalfa/skalfa-redis@file:../skalfa-redis", { "dependencies": { "ioredis": "^5.4.1" }, "devDependencies": { "@types/node": "^26.0.0", "typescript": "^6.0.3" } }],
19
-
20
- "@types/node": ["@types/node@26.0.0", "", { "dependencies": { "undici-types": "~8.3.0" } }, "sha512-vf2YFi1iY9lHGwNJMs01biZFbKJkrZR1T6/MlzjhJLPdntOHLhTrDSnSVcdtvjihi4VQNlrFRIxLsDBlQpAipA=="],
21
-
22
- "cluster-key-slot": ["cluster-key-slot@1.1.1", "", {}, "sha512-rwHwUfXL40Chm1r08yrhU3qpUvdVlgkKNeyeGPOxnW8/SyVDvgRaed/Uz54AqWNaTCAThlj6QAs3TZcKI0xDEw=="],
23
-
24
- "debug": ["debug@4.4.3", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA=="],
25
-
26
- "denque": ["denque@2.1.0", "", {}, "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw=="],
27
-
28
- "ioredis": ["ioredis@5.11.1", "", { "dependencies": { "@ioredis/commands": "1.10.0", "cluster-key-slot": "1.1.1", "debug": "4.4.3", "denque": "2.1.0", "redis-errors": "1.2.0", "redis-parser": "3.0.0", "standard-as-callback": "2.1.0" } }, "sha512-ehuGcf94bQXhfagULNXrJdfnWO38v070jxSx/qE87Kjzmu2fU7ro5EFAb+OPituLqgfyuQaym5DlrNydW2sJ9A=="],
29
-
30
- "ms": ["ms@2.1.3", "", {}, "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="],
31
-
32
- "redis-errors": ["redis-errors@1.2.0", "", {}, "sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w=="],
33
-
34
- "redis-parser": ["redis-parser@3.0.0", "", { "dependencies": { "redis-errors": "^1.0.0" } }, "sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A=="],
35
-
36
- "standard-as-callback": ["standard-as-callback@2.1.0", "", {}, "sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A=="],
37
-
38
- "typescript": ["typescript@6.0.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw=="],
39
-
40
- "undici-types": ["undici-types@8.3.0", "", {}, "sha512-j375ScV60dom+YkPFIfTLcOiPxkN/buHz5GobjLhixFuANaNs3C9l4GmrWqejgXWJ7BbJcFYpTEUkS1Ge8bpZQ=="],
41
- }
42
- }