-
Notifications
You must be signed in to change notification settings - Fork 430
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.85 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.85 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "codepilot",
"version": "0.38.2",
"private": true,
"license": "BUSL-1.1",
"workspaces": [
"apps/*",
"packages/*"
],
"author": {
"name": "op7418",
"email": "7418@openclaw.ai"
},
"description": "A native desktop GUI client for Claude Code",
"main": "dist-electron/main.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"test:unit": "tsx --test src/__tests__/unit/*.test.ts",
"test:smoke": "npx playwright test --grep @smoke",
"test:e2e": "npx playwright test",
"test:visual": "npx playwright test --grep @visual",
"test": "npm run typecheck && npm run test:unit",
"lint:colors": "! grep -rn --include='*.tsx' --include='*.ts' -E '(bg|text|border)-(green|emerald|red|orange|yellow|amber|blue)-(400|500|600|700)' src/components/ src/app/ --exclude-dir=ui --exclude-dir=ai-elements | grep -v 'lint-allow-raw-color'",
"prepare": "node -e \"try{require('husky')()}catch(e){}\"",
"electron:dev": "concurrently -k \"next dev\" \"wait-on http://localhost:3000 && electron .\"",
"electron:build": "next build && node scripts/build-electron.mjs",
"electron:pack": "npm run electron:build && electron-builder --config electron-builder.yml",
"electron:pack:mac": "npm run electron:build && electron-builder --mac --config electron-builder.yml",
"electron:pack:win": "npm run electron:build && electron-builder --win --config electron-builder.yml",
"electron:pack:linux": "npm run electron:build && electron-builder --linux --config electron-builder.yml"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@ai-sdk/amazon-bedrock": "^4.0.77",
"@ai-sdk/anthropic": "^3.0.47",
"@ai-sdk/google": "^3.0.31",
"@ai-sdk/google-vertex": "^4.0.80",
"@ai-sdk/openai": "^3.0.34",
"@anthropic-ai/claude-agent-sdk": "^0.2.62",
"@google/genai": "^1.43.0",
"@larksuiteoapi/node-sdk": "^1.59.0",
"@lobehub/icons": "^4.6.0",
"@phosphor-icons/react": "^2.1.10",
"@radix-ui/react-use-controllable-state": "^1.2.2",
"@streamdown/cjk": "^1.0.1",
"@streamdown/code": "^1.0.1",
"@streamdown/math": "^1.0.1",
"@streamdown/mermaid": "^1.0.1",
"ai": "^6.0.73",
"ansi-to-react": "^6.2.6",
"better-sqlite3": "^12.6.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"discord.js": "^14.25.1",
"dompurify": "^3.3.3",
"electron-updater": "^6.8.3",
"markdown-it": "^14.1.1",
"morphdom": "^2.7.8",
"motion": "^12.33.0",
"nanoid": "^5.1.6",
"next": "16.1.6",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"recharts": "^3.7.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"shiki": "^3.22.0",
"streamdown": "^2.1.0",
"tailwind-merge": "^3.4.0",
"use-stick-to-bottom": "^1.1.2",
"uuid": "^13.0.0",
"ws": "^8.19.0",
"zlib-sync": "^0.1.10"
},
"devDependencies": {
"@playwright/test": "^1.58.1",
"@tailwindcss/postcss": "^4",
"@types/better-sqlite3": "^7.6.13",
"@types/dompurify": "^3.0.5",
"@types/markdown-it": "^14.1.2",
"@types/morphdom": "^2.3.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"concurrently": "^9.2.1",
"electron": "^40.2.1",
"electron-builder": "^26.7.0",
"esbuild": "^0.27.3",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"wait-on": "^9.0.3"
}
}