-
Notifications
You must be signed in to change notification settings - Fork 444
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.11 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.11 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
{
"name": "agent-cowork",
"private": true,
"version": "0.1.0",
"type": "module",
"main": "dist-electron/main.js",
"scripts": {
"rebuild": "npx electron-rebuild -f -w better-sqlite3",
"dev": "pkill -f vite 2>/dev/null; pkill -f electron 2>/dev/null; sleep 1; bun run dev:react & bun run dev:electron",
"dev:react": "vite",
"dev:electron": "bun run transpile:electron && cross-env NODE_ENV=development electron .",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"transpile:electron": "tsc --project src/electron/tsconfig.json",
"dist:mac-arm64": "bun run transpile:electron && bun run build && electron-builder --mac --arm64",
"dist:mac-x64": "bun run transpile:electron && bun run build && electron-builder --mac --x64",
"dist:win": "bun run transpile:electron && bun run build && electron-builder --win --x64",
"dist:linux": "bun run transpile:electron && bun run build && electron-builder --linux --x64"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.6",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@tailwindcss/vite": "^4.1.18",
"better-sqlite3": "^12.6.0",
"dotenv": "^17.2.3",
"highlight.js": "^11.11.1",
"os-utils": "^0.0.14",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"tailwindcss": "^4.1.18",
"vite-tsconfig-paths": "^6.0.3",
"zustand": "^5.0.10"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/better-sqlite3": "^7.6.13",
"@types/os-utils": "^0.0.4",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"cross-env": "^10.1.0",
"electron": "^39.2.7",
"electron-builder": "^26.4.0",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^17.0.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.52.0",
"vite": "^7.3.1"
},
"patchedDependencies": {
"@anthropic-ai/claude-agent-sdk@0.2.6": "patches/@anthropic-ai%2Fclaude-agent-sdk@0.2.6.patch"
}
}