-
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) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.78 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": "carapace",
"version": "0.15.1",
"description": "Visual terminal wrapper for Claude Code",
"main": "./out/main/index.js",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"typecheck": "tsc --noEmit",
"postinstall": "electron-rebuild",
"generate-icon": "node scripts/generate-icon.mjs",
"pack": "npm run build && npm run generate-icon && electron-builder --mac --dir",
"dist": "npm run build && npm run generate-icon && electron-builder --mac"
},
"dependencies": {
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"chokidar": "^5.0.0",
"date-fns": "^4.1.0",
"framer-motion": "^12.35.2",
"js-yaml": "^4.1.1",
"node-pty": "^1.1.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"zustand": "^5.0.11"
},
"devDependencies": {
"@electron/rebuild": "^4.0.3",
"@tailwindcss/vite": "^4.2.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.4.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"electron": "^40.8.0",
"electron-builder": "^26.8.1",
"electron-vite": "^5.0.0",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"vite": "^7.3.1"
},
"build": {
"appId": "com.carapace.app",
"productName": "Carapace",
"mac": {
"icon": "build/icon.icns",
"category": "public.app-category.developer-tools",
"target": [
{
"target": "dmg"
},
{
"target": "zip"
}
],
"identity": "-"
},
"directories": {
"output": "dist"
},
"files": [
"out/**/*"
],
"asarUnpack": [
"node_modules/node-pty/**/*"
]
}
}