@mastra/redis 1.0.2 → 1.1.0-alpha.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/CHANGELOG.md +112 -0
- package/dist/cache.d.ts +42 -0
- package/dist/cache.d.ts.map +1 -0
- package/dist/docs/SKILL.md +1 -1
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- package/dist/index.cjs +102 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +100 -1
- package/dist/index.js.map +1 -1
- package/package.json +11 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/redis",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.1.0-alpha.0",
|
|
4
4
|
"description": "Redis storage provider for Mastra - provides storage capabilities for direct Redis connections",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -29,13 +29,14 @@
|
|
|
29
29
|
"@vitest/ui": "4.1.5",
|
|
30
30
|
"dotenv": "^17.0.0",
|
|
31
31
|
"eslint": "^9.37.0",
|
|
32
|
+
"ioredis": "^5.6.1",
|
|
32
33
|
"tsup": "^8.5.0",
|
|
33
|
-
"typescript": "^
|
|
34
|
+
"typescript": "^6.0.3",
|
|
34
35
|
"vitest": "4.1.5",
|
|
35
|
-
"@internal/lint": "0.0.
|
|
36
|
-
"@internal/
|
|
37
|
-
"@internal/
|
|
38
|
-
"@mastra/core": "1.
|
|
36
|
+
"@internal/lint": "0.0.88",
|
|
37
|
+
"@internal/storage-test-utils": "0.0.84",
|
|
38
|
+
"@internal/types-builder": "0.0.63",
|
|
39
|
+
"@mastra/core": "1.30.0-alpha.1"
|
|
39
40
|
},
|
|
40
41
|
"peerDependencies": {
|
|
41
42
|
"@mastra/core": ">=1.0.0-0 <2.0.0-0"
|
|
@@ -57,11 +58,12 @@
|
|
|
57
58
|
"node": ">=22.13.0"
|
|
58
59
|
},
|
|
59
60
|
"scripts": {
|
|
61
|
+
"build": "pnpm build:lib",
|
|
62
|
+
"build:lib": "tsup --silent --config tsup.config.ts",
|
|
63
|
+
"build:watch": "tsup --watch --silent --config tsup.config.ts",
|
|
60
64
|
"pretest": "docker compose up -d",
|
|
61
65
|
"test": "vitest run",
|
|
62
66
|
"posttest": "docker compose down",
|
|
63
|
-
"lint": "eslint ."
|
|
64
|
-
"build:lib": "tsup --silent --config tsup.config.ts",
|
|
65
|
-
"build:watch": "tsup --watch --silent --config tsup.config.ts"
|
|
67
|
+
"lint": "eslint ."
|
|
66
68
|
}
|
|
67
69
|
}
|