-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.29 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 3.29 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
{
"name": "stave",
"private": true,
"version": "0.0.17",
"description": "Stave: Agentic Coding IDE.",
"author": {
"name": "astyfx",
"email": "astyfx@gmail.com"
},
"type": "module",
"main": "out/main/index.js",
"engines": {
"node": ">=20"
},
"scripts": {
"postinstall": "node scripts/rebuild-electron-deps.mjs",
"server-dev": "bun run server/dev-server.ts",
"dev": "vite",
"dev:all": "concurrently -n server,client -c blue,green \"bun run server-dev\" \"bun run dev\"",
"dev:desktop": "electron-vite dev",
"dev:desktop:poll": "CHOKIDAR_USEPOLLING=1 CHOKIDAR_INTERVAL=120 electron-vite dev",
"build": "tsc --noEmit && vite build",
"build:desktop": "tsc --noEmit && electron-vite build",
"package:desktop": "bun run rebuild:electron-deps && bun run build:desktop && electron-builder --config electron-builder.yml --dir",
"run:desktop:built": "bun run rebuild:electron-deps && bun run build:desktop && node scripts/run-desktop-built.mjs",
"package:linux:dir": "bun run rebuild:electron-deps && bun run build:desktop && electron-builder --config electron-builder.yml --linux dir",
"package:linux:appimage": "bun run rebuild:electron-deps && bun run build:desktop && electron-builder --config electron-builder.yml --linux AppImage",
"package:linux:deb": "bun run rebuild:electron-deps && bun run build:desktop && electron-builder --config electron-builder.yml --linux deb",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"test": "bun test",
"test:e2e": "playwright test",
"qa:ui": "bun run test:e2e",
"rebuild:electron-deps": "node scripts/rebuild-electron-deps.mjs",
"test:ci": "bun run typecheck && bun test && bun run build && bun run build:desktop"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "0.2.81",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fontsource-variable/geist": "^5.2.8",
"@fontsource-variable/inter": "^5.2.8",
"@monaco-editor/react": "^4.7.0",
"@openai/codex-sdk": "0.116.0",
"@radix-ui/react-slot": "^1.2.4",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"better-sqlite3": "^12.6.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"lucide-react": "^1.0.1",
"next-themes": "^0.4.6",
"node-pty": "^1.1.0",
"radix-ui": "^1.4.3",
"react": "^19.2.4",
"react-diff-viewer-continued": "^4.2.0",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^4.7.5",
"react-virtuoso": "^4.18.3",
"remark-gfm": "^4.0.1",
"shadcn": "^4.1.0",
"shiki": "^4.0.2",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"vaul": "^1.1.2",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@playwright/test": "^1.58.2",
"@tailwindcss/vite": "^4.2.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"concurrently": "^9.2.1",
"electron": "^41.0.0",
"electron-builder": "^26.8.1",
"electron-vite": "^5.0.0",
"tailwindcss": "^4.2.1",
"tw-animate-css": "^1.4.0",
"typescript": "~5.9.3",
"vite": "^8.0.2"
}
}