-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.5 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.5 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
{
"name": "@betterdb/memory",
"version": "0.2.0",
"description": "BetterDB Memory for Claude Code — Valkey-powered persistent memory across sessions",
"license": "MIT",
"author": "BetterDB Inc. <hello@betterdb.com>",
"homepage": "https://github.com/BetterDB-inc/memory",
"repository": {
"type": "git",
"url": "https://github.com/BetterDB-inc/memory.git"
},
"keywords": [
"claude-code",
"memory",
"valkey",
"mcp",
"ai-memory",
"vector-search",
"betterdb"
],
"type": "module",
"bin": {
"betterdb-memory": "./src/index.ts"
},
"files": [
"src/",
"scripts/",
"README.md",
"LICENSE",
"package.json",
"tsconfig.json"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "bun run src/index.ts",
"test": "bun test",
"test:unit": "bun test tests/unit",
"test:integration": "bun test tests/integration",
"validate": "bash scripts/validate-pack.sh",
"prepublishOnly": "bash scripts/validate-pack.sh",
"setup-index": "bun run scripts/setup-index.ts",
"migrate-embeddings": "bun run scripts/migrate-embeddings.ts",
"check-providers": "bun run scripts/check-providers.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"iovalkey": "^0.2.1",
"ollama": "^0.5.14",
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.24.4",
"zod-to-json-schema": "^3.24.5",
"@anthropic-ai/sdk": "latest"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.8.3"
}
}