-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 819 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 819 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
{
"name": "memorybench",
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "bun run src/index.ts",
"test": "bun test",
"format": "prettier --write \"src/**/*.ts\" \"ui/**/*.tsx\" \"ui/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"ui/**/*.tsx\" \"ui/**/*.ts\""
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.56",
"@ai-sdk/google": "^2.0.49",
"@ai-sdk/openai": "^2.0.88",
"@anthropic-ai/tokenizer": "^0.0.4",
"@getzep/zep-cloud": "^3.13.0",
"ai": "^5.0.115",
"drizzle-orm": "^0.45.1",
"js-tiktoken": "^1.0.21",
"mem0ai": "^2.1.38",
"supermemory": "^4.0.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/bun": "^1.2.14",
"@types/node": "^25.0.0",
"prettier": "^3.7.4",
"typescript": "^5.9.3"
}
}