-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 961 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 961 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": "braindb",
"version": "2.0.0",
"description": "Database-backed memory system for AI agents — MCP server",
"type": "module",
"scripts": {
"build": "bun build src/server.ts --outdir dist",
"start": "bun src/server.ts",
"dev": "bun --watch src/server.ts",
"test": "bun test",
"typecheck": "bunx tsc --noEmit",
"mcp": "bun src/mcp-client.ts",
"migrate": "bun src/migrate.ts",
"stats": "bun src/stats.ts",
"bench": "bun src/benchmark.ts",
"contract-check": "bun src/contract-check.ts"
},
"dependencies": {
"@hono/node-server": "^1.19.11",
"@modelcontextprotocol/sdk": "^1.12.1",
"better-sqlite3": "^11.8.1",
"dotenv": "^17.3.1",
"gray-matter": "^4.0.3",
"hono": "^4.12.9",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/bun": "^1.3.11",
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}