@mastra/chroma 0.0.0-toolOptionTypes-20250917085558 → 0.0.0-top-level-fix-20251211111608
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 +198 -3
- package/README.md +3 -0
- package/dist/index.cjs +188 -29
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +188 -29
- package/dist/index.js.map +1 -1
- package/dist/vector/index.d.ts +23 -7
- package/dist/vector/index.d.ts.map +1 -1
- package/package.json +17 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/chroma",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-top-level-fix-20251211111608",
|
|
4
4
|
"description": "Chroma vector store provider for Mastra",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -20,22 +20,24 @@
|
|
|
20
20
|
},
|
|
21
21
|
"license": "Apache-2.0",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"chromadb": "^3.
|
|
23
|
+
"chromadb": "^3.1.6"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@microsoft/api-extractor": "^7.52.8",
|
|
27
|
-
"@types/node": "
|
|
28
|
-
"
|
|
27
|
+
"@types/node": "22.13.17",
|
|
28
|
+
"@vitest/coverage-v8": "4.0.12",
|
|
29
|
+
"@vitest/ui": "4.0.12",
|
|
30
|
+
"eslint": "^9.37.0",
|
|
29
31
|
"tsup": "^8.5.0",
|
|
30
32
|
"typescript": "^5.8.3",
|
|
31
|
-
"vitest": "
|
|
32
|
-
"@internal/lint": "0.0.0-
|
|
33
|
-
"@internal/
|
|
34
|
-
"@internal/
|
|
35
|
-
"@mastra/core": "0.0.0-
|
|
33
|
+
"vitest": "4.0.12",
|
|
34
|
+
"@internal/lint": "0.0.0-top-level-fix-20251211111608",
|
|
35
|
+
"@internal/storage-test-utils": "0.0.49",
|
|
36
|
+
"@internal/types-builder": "0.0.0-top-level-fix-20251211111608",
|
|
37
|
+
"@mastra/core": "0.0.0-top-level-fix-20251211111608"
|
|
36
38
|
},
|
|
37
39
|
"peerDependencies": {
|
|
38
|
-
"@mastra/core": "0.0.0-
|
|
40
|
+
"@mastra/core": "0.0.0-top-level-fix-20251211111608"
|
|
39
41
|
},
|
|
40
42
|
"files": [
|
|
41
43
|
"dist",
|
|
@@ -50,9 +52,14 @@
|
|
|
50
52
|
"bugs": {
|
|
51
53
|
"url": "https://github.com/mastra-ai/mastra/issues"
|
|
52
54
|
},
|
|
55
|
+
"engines": {
|
|
56
|
+
"node": ">=22.13.0"
|
|
57
|
+
},
|
|
53
58
|
"scripts": {
|
|
54
59
|
"build": "tsup --silent --config tsup.config.ts",
|
|
55
60
|
"build:watch": "tsup --watch --silent --config tsup.config.ts",
|
|
61
|
+
"pretest": "docker compose up -d",
|
|
62
|
+
"posttest": "docker compose down -v",
|
|
56
63
|
"test": "vitest run",
|
|
57
64
|
"lint": "eslint ."
|
|
58
65
|
}
|