-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 854 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 854 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
{
"name": "@memcc/openclaw-plugin",
"version": "0.1.0",
"description": "Hybrid memory plugin for OpenClaw — DAG context engine + verbatim vector long-term memory",
"type": "module",
"main": "index.ts",
"license": "MIT",
"keywords": ["openclaw", "openclaw-plugin", "memory", "context-management"],
"scripts": {
"test": "vitest run --dir test",
"test:watch": "vitest --dir test",
"bench": "vitest run --dir test/benchmark"
},
"files": [
"index.ts",
"src/**/*.ts",
"openclaw.plugin.json"
],
"dependencies": {
"@lancedb/lancedb": "^0.15.0",
"@sinclair/typebox": "^0.34.0",
"apache-arrow": "^18.0.0"
},
"devDependencies": {
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"peerDependencies": {
"openclaw": ">=2026.4.2"
},
"openclaw": {
"extensions": ["./index.ts"]
}
}