-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1018 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1018 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
35
36
37
38
39
{
"name": "db0-monorepo",
"private": true,
"type": "module",
"workspaces": [
"packages/core",
"packages/backends/sqlite",
"packages/backends/postgres",
"packages/apps/openclaw",
"packages/apps/claude-code",
"packages/inspector",
"packages/cli",
"packages/integrations/ai-sdk",
"packages/integrations/langchain",
"packages/integrations/pi",
"packages/benchmark"
],
"scripts": {
"build": "npm run build --workspaces",
"test": "vitest run",
"test:watch": "vitest",
"changeset": "changeset",
"version": "changeset version",
"release": "./scripts/publish.sh",
"release:dry": "./scripts/publish.sh --dry-run"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.80.0",
"@changesets/cli": "^2.30.0",
"@langchain/core": "^1.1.34",
"@langchain/langgraph": "^1.2.4",
"@types/debug": "^4.1.12",
"@types/node": "^22.0.0",
"ai": "^6.0.116",
"typescript": "^5.7.0",
"vitest": "^3.0.0",
"zod": "^4.3.6"
}
}