-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.01 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.01 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
{
"name": "brain-memory",
"version": "1.0.0",
"description": "Brain-inspired memory system for RAG applications",
"module": "src/index.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "bun --watch index.ts",
"start": "bun index.ts",
"test": "bun test",
"migrate": "bun src/db/migrate.ts",
"seed": "bun src/db/seed.ts",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@ai-sdk/google": "^2.0.25",
"@ai-sdk/openai": "^2.0.86",
"@hono/zod-validator": "^0.2.0",
"@openrouter/ai-sdk-provider": "^1.5.3",
"ai": "^5.0.82",
"dotenv": "^16.0.0",
"drizzle-orm": "^0.44.7",
"hnswlib-node": "^3.0.0",
"hono": "^4.0.0",
"uuid": "^9.0.0",
"uuidv7": "^1.0.2",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/bun": "latest",
"@types/uuid": "^9.0.0",
"drizzle-kit": "^0.31.5",
"typescript": "^5.0.0"
}
}