-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.22 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
{
"name": "claude-code-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npx tsx server.ts",
"build": "next build",
"start": "NODE_ENV=production npx tsx server.ts",
"lint": "eslint",
"test": "vitest run",
"test:unit": "vitest run",
"test:e2e": "node --experimental-require-module node_modules/@playwright/test/cli.js test",
"canary:ask": "node scripts/probe-ask-user-question.mjs && node scripts/probe-ask-user-question-edges.mjs"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "0.3.210",
"@anthropic-ai/sdk": "^0.111.0",
"@huggingface/transformers": "3.8.1",
"@libsql/client": "^0.17.0",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tiptap/extension-code-block": "^3.7.2",
"@tiptap/extension-code-block-lowlight": "^3.7.2",
"@tiptap/extension-placeholder": "^3.7.2",
"@tiptap/extension-table": "^3.22.1",
"@tiptap/extension-table-cell": "^3.22.1",
"@tiptap/extension-table-header": "^3.22.1",
"@tiptap/extension-table-row": "^3.22.1",
"@tiptap/react": "^3.7.2",
"@tiptap/starter-kit": "^3.7.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"codemogger": "0.1.4",
"diff": "^8.0.3",
"drawflow": "^0.0.60",
"echarts": "^6.1.0",
"kokoro-js": "^1.2.1",
"lowlight": "^3.3.0",
"lucide-react": "^0.546.0",
"next": "^16.1.6",
"radix-ui": "^1.4.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^3.0.6",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.3.1",
"turndown": "^7.2.2",
"turndown-plugin-gfm": "^1.0.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@playwright/test": "^1.56.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@types/turndown": "^5.0.6",
"eslint": "^9",
"eslint-config-next": "^16.1.6",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vitest": "^4.1.4"
}
}