-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.8 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.8 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
{
"name": "termiteam",
"version": "1.0.0",
"description": "A control center for managing multiple AI agent terminals as a team",
"main": "./out/main/index.js",
"author": "Netanel Baruch",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NetanelBaruch/termiteam.git"
},
"homepage": "https://github.com/NetanelBaruch/termiteam",
"bugs": {
"url": "https://github.com/NetanelBaruch/termiteam/issues"
},
"keywords": [
"terminal",
"ai-agents",
"electron",
"multi-terminal",
"developer-tools",
"terminal-manager"
],
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"postinstall": "electron-rebuild -f -w node-pty",
"package": "electron-vite build && electron-builder"
},
"dependencies": {
"electron-store": "^8.2.0",
"node-pty": "^1.0.0",
"uuid": "^9.0.1",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0",
"xterm-addon-webgl": "^0.16.0",
"zustand": "^4.5.2"
},
"devDependencies": {
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^3.0.0",
"@tailwindcss/vite": "^4.0.0",
"@types/node": "^20.14.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^9.0.8",
"@vitejs/plugin-react": "^4.3.1",
"electron": "^31.3.1",
"electron-builder": "^24.13.3",
"electron-rebuild": "^3.2.9",
"electron-vite": "^2.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^4.0.0",
"typescript": "^5.5.4"
},
"build": {
"appId": "com.termiteam.app",
"productName": "Termiteam",
"mac": {
"target": "dmg"
},
"files": [
"out/**/*"
],
"asarUnpack": [
"**/*.node",
"**/node-pty/**"
]
}
}