-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.44 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.44 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
116
{
"name": "backchat",
"version": "0.0.1",
"private": true,
"description": "Local-first desktop client for any ACP agent",
"author": "backchat contributors",
"main": "out/main/index.js",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"typecheck": "tsc -p tsconfig.node.json --noEmit && tsc -p tsconfig.web.json --noEmit",
"smoke:claude-acp-fork": "tsx scripts/smoke-claude-agent-acp-fork.ts",
"smoke:claude-acp-meta": "tsx scripts/smoke-claude-agent-acp-meta.ts",
"smoke:codex-acp-native": "tsx scripts/smoke-codex-acp-native.ts",
"test:e2e": "electron-vite build && playwright test",
"package": "electron-vite build && electron-builder",
"package:dir": "electron-vite build && electron-builder --dir",
"rebuild": "electron-rebuild -f -w better-sqlite3,node-pty"
},
"dependencies": {
"@fontsource-variable/geist": "^5.2.9",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"@lobehub/icons": "^5.10.0",
"@open-managed-agents-desktop/acp": "workspace:*",
"@open-managed-agents-desktop/acp-agent-setup": "workspace:*",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@radix-ui/react-use-controllable-state": "^1.2.2",
"ai": "^6.0.194",
"liquid-glass-react": "^1.1.1",
"motion": "^12.40.0",
"nanoid": "^5.1.11",
"node-pty": "1.2.0-beta.13",
"radix-ui": "^1.4.3",
"simple-icons": "^16.22.0",
"smol-toml": "^1.6.1",
"streamdown": "^2.5.0",
"streaming-markdown": "^0.2.15",
"use-stick-to-bottom": "^1.1.4"
},
"devDependencies": {
"@agentclientprotocol/claude-agent-acp": "0.55.0",
"@agentclientprotocol/codex-acp": "1.1.0",
"@playwright/test": "^1.60.0",
"@tailwindcss/vite": "^4.3.0",
"@tanstack/react-query": "^5.100.14",
"@tanstack/react-router": "^1.170.10",
"@types/node": "^22.10.0",
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-webgl": "^0.18.0",
"@xterm/xterm": "^5.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"electron": "^42.3.1",
"electron-builder": "^26.8.1",
"electron-vite": "^5.0.0",
"lucide-react": "^1.17.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-hook-form": "^7.77.0",
"react-markdown": "^10.1.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.0",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.8",
"zod": "^4.4.3"
},
"build": {
"appId": "dev.openma.backchat",
"productName": "Backchat",
"directories": {
"output": "release/${version}"
},
"files": [
"out/**/*"
],
"asarUnpack": [
"**/*.node"
],
"mac": {
"target": [
"dmg"
],
"category": "public.app-category.developer-tools"
},
"win": {
"target": [
"nsis"
]
},
"linux": {
"target": [
"AppImage"
]
}
}
}