redis-graph-cache 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.
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * Core schema type definitions for Redis Schema Engine
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "redis-graph-cache",
3
+ "version": "1.0.0",
4
+ "description": "A TypeScript-first Redis data layer with schema-driven normalization, relationship management, and graph-based hydration for high-performance Node.js applications.",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "files": [
8
+ "dist",
9
+ "README.md",
10
+ "LICENSE"
11
+ ],
12
+ "scripts": {
13
+ "clean": "rm -rf dist",
14
+ "build": "npm run clean && tsc",
15
+ "format": "prettier --write \"{src,examples}/**/*.{ts,js,json,md}\"",
16
+ "format:check": "prettier --check \"{src,examples}/**/*.{ts,js,json,md}\"",
17
+ "prepublishOnly": "npm run build"
18
+ },
19
+ "keywords": [
20
+ "redis",
21
+ "cache",
22
+ "schema",
23
+ "typescript",
24
+ "normalization",
25
+ "hydration",
26
+ "graph",
27
+ "ioredis",
28
+ "lua",
29
+ "atomic",
30
+ "circuit-breaker"
31
+ ],
32
+ "license": "MIT",
33
+ "peerDependencies": {
34
+ "ioredis": "^5.10.1"
35
+ },
36
+ "devDependencies": {
37
+ "@types/node": "^20.0.0",
38
+ "prettier": "^3.8.3",
39
+ "typescript": "^5.0.0"
40
+ },
41
+ "engines": {
42
+ "node": ">=18.0.0"
43
+ }
44
+ }