forked from jakemor/kanna
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.45 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.45 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
92
93
{
"name": "kanna-code",
"type": "module",
"version": "0.31.0",
"description": "A beautiful web UI for Claude Code",
"license": "MIT",
"keywords": [
"claude",
"claude-code",
"ai",
"chat",
"ui",
"agent",
"anthropic",
"bun",
"react"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jakemor/kanna.git"
},
"bin": {
"kanna": "./bin/kanna"
},
"packageManager": "bun@1.3.5",
"files": [
"bin/",
"src/server/",
"src/shared/",
"dist/client/"
],
"engines": {
"bun": ">=1.3.5"
},
"scripts": {
"build": "vite build",
"check": "tsc --noEmit && vite build",
"dev": "bun run ./scripts/dev.ts",
"dev:client": "vite --host 0.0.0.0 --port 5174",
"dev:server": "bun run ./scripts/dev-server.ts --no-open --port 5175",
"install:dev": "bun install && bun run build && bun install -g .",
"start": "bun run ./src/server/cli.ts",
"test": "bun test",
"prepublishOnly": "vite build"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.39",
"@legendapp/list": "3.0.0-beta.44",
"@pierre/diffs": "^1.1.12",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-select": "^2.2.6",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-serialize": "^0.14.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/headless": "^6.0.0",
"@xterm/xterm": "^6.0.0",
"cloudflared": "^0.7.1",
"default-shell": "^2.2.0",
"file-type": "^22.0.0",
"openai": "^6.34.0",
"react-resizable-panels": "^4.7.3",
"uqr": "^0.1.3"
},
"devDependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"@types/bun": "latest",
"@types/node": "^24.10.1",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.1.1",
"autoprefixer": "^10.4.23",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.562.0",
"react": "19.2.1",
"react-dom": "19.2.1",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.12.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"typescript": "5.8.3",
"vite": "^6.0.0",
"zustand": "^5.0.10"
}
}