-
Notifications
You must be signed in to change notification settings - Fork 666
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.38 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.38 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "memory-lancedb-pro",
"version": "1.1.0-beta.10",
"description": "OpenClaw enhanced LanceDB memory plugin with hybrid retrieval (Vector + BM25), cross-encoder rerank, multi-scope isolation, long-context chunking, 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",
"chunking",
"long-context"
],
"repository": {
"type": "git",
"url": "git+https://github.com/CortexReach/memory-lancedb-pro.git"
},
"author": "win4r",
"license": "MIT",
"dependencies": {
"@lancedb/lancedb": "^0.26.2",
"@sinclair/typebox": "0.34.48",
"apache-arrow": "18.1.0",
"json5": "^2.2.3",
"openai": "^6.21.0",
"proper-lockfile": "^4.1.2"
},
"openclaw": {
"extensions": [
"./index.ts"
]
},
"scripts": {
"test": "node scripts/verify-ci-test-manifest.mjs && npm run test:cli-smoke && npm run test:core-regression && npm run test:storage-and-schema && npm run test:llm-clients-and-auth && npm run test:packaging-and-workflow",
"test:cli-smoke": "node scripts/run-ci-tests.mjs --group cli-smoke",
"test:core-regression": "node scripts/run-ci-tests.mjs --group core-regression",
"test:storage-and-schema": "node scripts/run-ci-tests.mjs --group storage-and-schema",
"test:llm-clients-and-auth": "node scripts/run-ci-tests.mjs --group llm-clients-and-auth",
"test:packaging-and-workflow": "node scripts/verify-ci-test-manifest.mjs && node scripts/run-ci-tests.mjs --group packaging-and-workflow",
"bench": "jiti benchmark/run.ts",
"bench:locomo": "jiti benchmark/run.ts --benchmark locomo",
"bench:longmemeval": "jiti benchmark/run.ts --benchmark longmemeval",
"test:openclaw-host": "node test/openclaw-host-functional.mjs",
"version": "node scripts/sync-plugin-version.mjs openclaw.plugin.json package.json && git add openclaw.plugin.json"
},
"optionalDependencies": {
"@lancedb/lancedb-darwin-x64": "^0.26.2",
"@lancedb/lancedb-darwin-arm64": "^0.26.2",
"@lancedb/lancedb-linux-x64-gnu": "^0.26.2",
"@lancedb/lancedb-linux-arm64-gnu": "^0.26.2",
"@lancedb/lancedb-win32-x64-msvc": "^0.26.2"
},
"devDependencies": {
"commander": "^14.0.0",
"jiti": "^2.6.0",
"typescript": "^5.9.3"
}
}