-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.54 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.54 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
{
"name": "agent-term",
"version": "0.3.0",
"description": "Run AI agents (Claude Code, Codex) in multi-pane grid. Monitor and control terminals from Feishu, Discord, Telegram on your phone.",
"author": "haibindev",
"license": "MIT",
"main": "out/main/index.js",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"rebuild": "electron-rebuild -f -w node-pty"
},
"dependencies": {
"@larksuiteoapi/node-sdk": "^1.59.0",
"discord.js": "^14.25.1",
"node-pty": "^1.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^20.14.8",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/ws": "^8.5.10",
"@vitejs/plugin-react": "^4.3.1",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^6.0.0",
"electron": "^41.0.0",
"electron-builder": "^24.13.3",
"electron-rebuild": "^3.2.9",
"electron-vite": "^2.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-resizable-panels": "^2.0.20",
"typescript": "^5.5.2",
"vite": "^5.3.1"
},
"build": {
"appId": "com.hbstr.agent-term",
"productName": "AgentTerm",
"icon": "build/icon",
"directories": {
"output": "dist-electron"
},
"files": [
"out/**/*",
"build/icon.png"
],
"win": {
"target": "dir",
"icon": "build/icon.ico"
},
"asarUnpack": [
"**/node_modules/node-pty/**/*"
]
}
}