-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.53 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.53 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
{
"name": "multiagent-terminal",
"version": "1.1.1",
"description": "Run multiple Claude Code agents in parallel",
"main": "out/main/index.js",
"scripts": {
"dev": "electron-vite dev -- --no-sandbox --force-node-api-uncaught-exceptions-policy=true",
"build": "electron-vite build",
"preview": "electron-vite preview",
"dist": "electron-vite build && electron-builder",
"dist:linux": "electron-vite build && electron-builder --linux",
"dist:mac": "electron-vite build && electron-builder --mac",
"dist:win": "electron-vite build && electron-builder --win"
},
"keywords": [
"claude",
"agent",
"terminal",
"electron"
],
"author": {
"name": "ClickHouse",
"email": "nikita.fomichev@clickhouse.com"
},
"license": "Apache-2.0",
"build": {
"appId": "com.clickhouse.multiagent-terminal",
"productName": "multiagent-terminal",
"directories": {
"output": "release"
},
"files": [
"out/**/*",
"node_modules/**/*",
"!node_modules/**/node_gyp_bins/**"
],
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Development",
"icon": "resources/icon.png"
},
"mac": {
"target": [
"dmg"
],
"icon": "resources/icon.png"
},
"win": {
"target": [
"nsis"
],
"icon": "resources/icon.png"
},
"nsis": {
"oneClick": true,
"perMachine": false
},
"publish": {
"provider": "github",
"owner": "ClickHouse",
"repo": "multiagent-terminal"
}
},
"type": "module",
"devDependencies": {
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@tailwindcss/postcss": "^4.2.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.4.27",
"electron": "^41.1.1",
"electron-builder": "^26.8.1",
"electron-vite": "^5.0.0",
"postcss": "^8.5.8",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"vite": "^8.0.5"
},
"dependencies": {
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^6.0.0",
"diff2html": "^3.4.56",
"electron-store": "^11.0.2",
"lucide-react": "^1.7.0",
"node-pty": "^1.1.0",
"simple-git": "^3.33.0",
"uuid": "^13.0.0",
"zustand": "^5.0.12"
}
}