@zibby/mem0ai 2.4.7
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/README.md +64 -0
- package/dist/index.d.mts +364 -0
- package/dist/index.d.ts +364 -0
- package/dist/index.js +863 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +815 -0
- package/dist/index.mjs.map +1 -0
- package/dist/oss/index.d.mts +1026 -0
- package/dist/oss/index.d.ts +1026 -0
- package/dist/oss/index.js +5566 -0
- package/dist/oss/index.js.map +1 -0
- package/dist/oss/index.mjs +5509 -0
- package/dist/oss/index.mjs.map +1 -0
- package/package.json +141 -0
package/package.json
ADDED
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@zibby/mem0ai",
|
|
3
|
+
"version": "2.4.7",
|
|
4
|
+
"description": "The Memory Layer For Your AI Apps",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
"*": {
|
|
10
|
+
"*": [
|
|
11
|
+
"./dist/index.d.ts"
|
|
12
|
+
],
|
|
13
|
+
"oss": [
|
|
14
|
+
"./dist/oss/index.d.ts"
|
|
15
|
+
]
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"exports": {
|
|
19
|
+
".": {
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
21
|
+
"require": "./dist/index.js",
|
|
22
|
+
"import": "./dist/index.mjs"
|
|
23
|
+
},
|
|
24
|
+
"./oss": {
|
|
25
|
+
"types": "./dist/oss/index.d.ts",
|
|
26
|
+
"require": "./dist/oss/index.js",
|
|
27
|
+
"import": "./dist/oss/index.mjs"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"dist"
|
|
32
|
+
],
|
|
33
|
+
"scripts": {
|
|
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",
|
|
39
|
+
"test": "jest",
|
|
40
|
+
"test:ci": "jest --coverage --ci",
|
|
41
|
+
"test:unit": "jest --coverage --ci --testPathIgnorePatterns='/node_modules/' '/dist/' 'integration'",
|
|
42
|
+
"test:integration": "jest --config jest.integration.config.js --forceExit",
|
|
43
|
+
"test:ts": "jest --config jest.config.js",
|
|
44
|
+
"test:watch": "jest --config jest.config.js --watch",
|
|
45
|
+
"format": "npm run clean && prettier --write .",
|
|
46
|
+
"format:check": "npm run clean && prettier --check ."
|
|
47
|
+
},
|
|
48
|
+
"tsup": {
|
|
49
|
+
"entry": [
|
|
50
|
+
"src/index.ts"
|
|
51
|
+
],
|
|
52
|
+
"format": [
|
|
53
|
+
"cjs",
|
|
54
|
+
"esm"
|
|
55
|
+
],
|
|
56
|
+
"dts": {
|
|
57
|
+
"resolve": true
|
|
58
|
+
},
|
|
59
|
+
"splitting": false,
|
|
60
|
+
"sourcemap": true,
|
|
61
|
+
"clean": true,
|
|
62
|
+
"treeshake": true,
|
|
63
|
+
"minify": false,
|
|
64
|
+
"external": [
|
|
65
|
+
"@mem0/community"
|
|
66
|
+
],
|
|
67
|
+
"noExternal": [
|
|
68
|
+
"!src/community/**"
|
|
69
|
+
]
|
|
70
|
+
},
|
|
71
|
+
"repository": {
|
|
72
|
+
"type": "git",
|
|
73
|
+
"url": "https://github.com/mem0ai/mem0",
|
|
74
|
+
"directory": "mem0-ts"
|
|
75
|
+
},
|
|
76
|
+
"keywords": [
|
|
77
|
+
"mem0",
|
|
78
|
+
"api",
|
|
79
|
+
"client",
|
|
80
|
+
"memory",
|
|
81
|
+
"llm",
|
|
82
|
+
"long-term-memory",
|
|
83
|
+
"ai"
|
|
84
|
+
],
|
|
85
|
+
"author": "Deshraj Yadav",
|
|
86
|
+
"license": "Apache-2.0",
|
|
87
|
+
"devDependencies": {
|
|
88
|
+
"@types/better-sqlite3": "^7.6.13",
|
|
89
|
+
"@types/node": "^22.7.6",
|
|
90
|
+
"@types/uuid": "^9.0.8",
|
|
91
|
+
"dotenv": "^16.4.5",
|
|
92
|
+
"fix-tsup-cjs": "^1.2.0",
|
|
93
|
+
"jest": "^29.7.0",
|
|
94
|
+
"nodemon": "^3.0.1",
|
|
95
|
+
"prettier": "^3.5.2",
|
|
96
|
+
"rimraf": "^5.0.5",
|
|
97
|
+
"ts-jest": "^29.2.6",
|
|
98
|
+
"ts-node": "^10.9.2",
|
|
99
|
+
"tsup": "^8.3.0",
|
|
100
|
+
"typescript": "5.5.4"
|
|
101
|
+
},
|
|
102
|
+
"dependencies": {
|
|
103
|
+
"axios": "^1.15.0",
|
|
104
|
+
"openai": "^4.93.0",
|
|
105
|
+
"uuid": "9.0.1",
|
|
106
|
+
"zod": "^3.24.1"
|
|
107
|
+
},
|
|
108
|
+
"peerDependencies": {
|
|
109
|
+
"@anthropic-ai/sdk": "^0.40.1",
|
|
110
|
+
"@azure/identity": "^4.0.0",
|
|
111
|
+
"@azure/search-documents": "^12.0.0",
|
|
112
|
+
"@cloudflare/workers-types": "^4.20250504.0",
|
|
113
|
+
"@google/genai": "^1.2.0",
|
|
114
|
+
"@langchain/core": "^1.0.0",
|
|
115
|
+
"@mistralai/mistralai": "^1.5.2",
|
|
116
|
+
"@qdrant/js-client-rest": "^1.17.0",
|
|
117
|
+
"@supabase/supabase-js": "^2.49.1",
|
|
118
|
+
"@types/jest": "29.5.14",
|
|
119
|
+
"@types/pg": "8.11.0",
|
|
120
|
+
"better-sqlite3": "^12.6.2",
|
|
121
|
+
"cloudflare": "^4.2.0",
|
|
122
|
+
"groq-sdk": "0.3.0",
|
|
123
|
+
"neo4j-driver": "^5.28.1",
|
|
124
|
+
"ollama": "^0.5.14",
|
|
125
|
+
"pg": "8.11.3",
|
|
126
|
+
"redis": "^4.6.13"
|
|
127
|
+
},
|
|
128
|
+
"engines": {
|
|
129
|
+
"node": ">=18"
|
|
130
|
+
},
|
|
131
|
+
"publishConfig": {
|
|
132
|
+
"access": "public"
|
|
133
|
+
},
|
|
134
|
+
"packageManager": "pnpm@10.5.2+sha512.da9dc28cd3ff40d0592188235ab25d3202add8a207afbedc682220e4a0029ffbff4562102b9e6e46b4e3f9e8bd53e6d05de48544b0c57d4b0179e22c76d1199b",
|
|
135
|
+
"pnpm": {
|
|
136
|
+
"onlyBuiltDependencies": [
|
|
137
|
+
"esbuild",
|
|
138
|
+
"better-sqlite3"
|
|
139
|
+
]
|
|
140
|
+
}
|
|
141
|
+
}
|