This repository was archived by the owner on May 25, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.9 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.9 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "dovepaw",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsup --metafile && tsx scripts/setup.ts",
"install": "tsx scripts/setup.ts --install",
"uninstall": "tsx scripts/setup.ts --uninstall",
"lint": "oxlint --disable-nested-config --ignore-pattern agents/",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"chatbot:servers": "tsx --watch chatbot/a2a/start-all.ts",
"chatbot:dev": "next dev chatbot -p 8473",
"chatbot:build": "next build chatbot",
"chatbot:start": "next start chatbot -p 8473",
"chatbot:test": "vitest run --root chatbot",
"agents:test": "vitest run --config vitest.node.config.ts",
"chatbot:dev:all": "tsx scripts/chatbot-start.ts",
"dev": "tsx scripts/setup.ts && npm run chatbot:dev:all"
},
"dependencies": {
"@a2a-js/sdk": "latest",
"@anthropic-ai/claude-agent-sdk": "^0.2.138",
"@aws-sdk/client-s3": "^3.1045.0",
"@codemirror/lang-json": "^6.0.2",
"@dagrejs/dagre": "^3.0.0",
"@ladybugdb/core": "latest",
"@napi-rs/keyring": "^1.2.0",
"@openai/codex-sdk": "latest",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@radix-ui/react-use-controllable-state": "^1.2.2",
"@streamdown/cjk": "^1.0.3",
"@streamdown/code": "^1.1.1",
"@streamdown/math": "^1.0.2",
"@streamdown/mermaid": "^1.0.2",
"@uiw/react-codemirror": "^4.25.9",
"@xyflow/react": "^12.10.2",
"ai": "^6.0.177",
"animejs": "^4.3.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"consola": "^3.4.2",
"diff": "^9.0.0",
"express": "^5.2.1",
"lucide-react": "^1.8.0",
"motion": "^12.38.0",
"nanoid": "^5.1.7",
"next": "^16.2.6",
"react": "^19.2.4",
"react-dom": "^19.2.6",
"react-icons": "^5.6.0",
"shiki": "^4.0.2",
"streamdown": "^2.5.0",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"use-stick-to-bottom": "^1.1.3",
"ws": "^8.20.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.0",
"@testing-library/react": "^16.3.0",
"@types/diff": "^8.0.0",
"@types/express": "^5.0.6",
"@types/node": "^25.6.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^6.0.1",
"concurrently": "^9.2.1",
"jsdom": "^29.1.1",
"oxfmt": "^0.48.0",
"oxlint": "^1.63.0",
"oxlint-tsgolint": "^0.22.1",
"tailwindcss": "^4.2.2",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.5"
}
}