forked from AlexPeppas/agentplex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.67 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.67 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
{
"name": "agentplex",
"productName": "AgentPlex",
"version": "1.0.0",
"description": "Multi-session Claude CLI desktop app with graph visualization",
"author": "Alexandros Peppas",
"main": ".vite/build/main.js",
"bin": {
"agentplex": "bin/agentplex.js"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/anthropics/agentplex.git"
},
"engines": {
"node": ">=18"
},
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"electron-winstaller",
"esbuild",
"node-pty",
"puppeteer",
"sharp"
]
},
"scripts": {
"generate-icons": "node scripts/generate-icons.mjs",
"start": "electron-forge start",
"package": "pnpm generate-icons && electron-forge package",
"make": "pnpm generate-icons && electron-forge make"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"@xyflow/react": "^12.4.0",
"node-pty": "^1.0.0",
"puppeteer-core": "^24.39.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zustand": "^5.0.0"
},
"devDependencies": {
"@electron-forge/cli": "^7.6.0",
"@electron-forge/maker-squirrel": "^7.6.0",
"@electron-forge/maker-zip": "^7.6.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.6.0",
"@electron-forge/plugin-vite": "^7.6.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"adm-zip": "^0.5.16",
"electron": "^33.2.0",
"gif-encoder-2": "^1.0.5",
"png-to-ico": "^3.0.1",
"puppeteer": "^24.39.1",
"sharp": "^0.34.5",
"typescript": "^5.7.0",
"vite": "^5.4.11"
}
}