-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.3 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.3 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
{
"name": "openclaw-mem",
"version": "0.1.0",
"description": "Smart memory system for AI agents with vector search, automatic extraction, and cross-device sync",
"type": "module",
"main": "src/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/pumaurya/openclaw-mem.git"
},
"keywords": [
"memory",
"ai",
"agents",
"vector-search",
"lancedb",
"ollama",
"embeddings",
"context",
"llm"
],
"author": "Puneet Maurya",
"license": "MIT",
"bugs": {
"url": "https://github.com/pumaurya/openclaw-mem/issues"
},
"homepage": "https://github.com/pumaurya/openclaw-mem#readme",
"scripts": {
"cli": "npx tsx src/cli.ts",
"repl": "npx tsx src/repl.ts",
"demo": "npx tsx src/demo.ts",
"test": "npx tsx src/test-hooks.ts",
"test:e2e": "npx tsx src/test-e2e.ts",
"test:memory": "npx tsx src/test-memory-system.ts",
"test:backup": "npx tsx src/test-backup-restore.ts",
"test:sync": "npx tsx src/test-sync-manager.ts",
"benchmark": "npx tsx src/benchmark.ts"
},
"dependencies": {
"@lancedb/lancedb": "^0.4.0",
"apache-arrow": "^15.0.0",
"ollama": "^0.5.0",
"tar": "^7.5.7"
},
"devDependencies": {
"tsx": "^4.7.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}