-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 959 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 959 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "memory-lancedb-pro",
"version": "1.0.9",
"description": "OpenClaw enhanced LanceDB memory plugin with hybrid retrieval (Vector + BM25), cross-encoder rerank, multi-scope isolation, and management CLI",
"type": "module",
"main": "index.ts",
"keywords": [
"openclaw",
"openclaw-plugin",
"memory",
"lancedb",
"vector-search",
"bm25",
"hybrid-retrieval",
"rerank",
"ai-memory",
"long-term-memory"
],
"repository": {
"type": "git",
"url": "git+https://github.com/win4r/memory-lancedb-pro.git"
},
"author": "win4r",
"license": "MIT",
"dependencies": {
"@lancedb/lancedb": "^0.26.2",
"@sinclair/typebox": "0.34.48",
"openai": "^6.21.0"
},
"openclaw": {
"extensions": [
"./index.ts"
]
},
"scripts": {
"test": "node test/cli-smoke.mjs"
},
"devDependencies": {
"commander": "^14.0.0",
"jiti": "^2.6.0",
"typescript": "^5.9.3"
}
}