mem0ai 2.1.8 → 2.1.10
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/dist/oss/index.d.mts +67 -2
- package/dist/oss/index.d.ts +67 -2
- package/dist/oss/index.js +571 -70
- package/dist/oss/index.js.map +1 -1
- package/dist/oss/index.mjs +568 -70
- package/dist/oss/index.mjs.map +1 -1
- package/package.json +17 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mem0ai",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.10",
|
|
4
4
|
"description": "The Memory Layer For Your AI Apps",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -31,9 +31,11 @@
|
|
|
31
31
|
"dist"
|
|
32
32
|
],
|
|
33
33
|
"scripts": {
|
|
34
|
-
"clean": "
|
|
35
|
-
"build": "npm run clean && prettier --check . && tsup",
|
|
36
|
-
"dev": "nodemon",
|
|
34
|
+
"clean": "rimraf dist",
|
|
35
|
+
"build": "npm run clean && npx prettier --check . && npx tsup",
|
|
36
|
+
"dev": "npx nodemon",
|
|
37
|
+
"start": "pnpm run example memory",
|
|
38
|
+
"example": "ts-node src/oss/examples/vector-stores/index.ts",
|
|
37
39
|
"test": "jest",
|
|
38
40
|
"test:ts": "jest --config jest.config.js",
|
|
39
41
|
"test:watch": "jest --config jest.config.js --watch",
|
|
@@ -55,7 +57,13 @@
|
|
|
55
57
|
"sourcemap": true,
|
|
56
58
|
"clean": true,
|
|
57
59
|
"treeshake": true,
|
|
58
|
-
"minify": false
|
|
60
|
+
"minify": false,
|
|
61
|
+
"external": [
|
|
62
|
+
"@mem0/community"
|
|
63
|
+
],
|
|
64
|
+
"noExternal": [
|
|
65
|
+
"!src/community/**"
|
|
66
|
+
]
|
|
59
67
|
},
|
|
60
68
|
"keywords": [
|
|
61
69
|
"mem0",
|
|
@@ -74,7 +82,9 @@
|
|
|
74
82
|
"dotenv": "^16.4.5",
|
|
75
83
|
"fix-tsup-cjs": "^1.2.0",
|
|
76
84
|
"jest": "^29.7.0",
|
|
85
|
+
"nodemon": "^3.0.1",
|
|
77
86
|
"prettier": "^3.5.2",
|
|
87
|
+
"rimraf": "^5.0.5",
|
|
78
88
|
"ts-jest": "^29.2.6",
|
|
79
89
|
"ts-node": "^10.9.2",
|
|
80
90
|
"tsup": "^8.3.0",
|
|
@@ -90,10 +100,12 @@
|
|
|
90
100
|
"peerDependencies": {
|
|
91
101
|
"@anthropic-ai/sdk": "0.18.0",
|
|
92
102
|
"@qdrant/js-client-rest": "1.13.0",
|
|
103
|
+
"@supabase/supabase-js": "^2.49.1",
|
|
93
104
|
"@types/jest": "29.5.14",
|
|
94
105
|
"@types/pg": "8.11.0",
|
|
95
106
|
"@types/sqlite3": "3.1.11",
|
|
96
107
|
"groq-sdk": "0.3.0",
|
|
108
|
+
"ollama": "^0.5.14",
|
|
97
109
|
"pg": "8.11.3",
|
|
98
110
|
"redis": "4.7.0",
|
|
99
111
|
"sqlite3": "5.1.7"
|