-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.1 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.1 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
{
"name": "@appoly/multiagent-chat",
"version": "1.0.7",
"description": "Multi-agent chat for collaborative AI discussions",
"main": "main.js",
"bin": {
"multiagent-chat": "./bin/multiagent-chat.js"
},
"files": [
"bin/",
"main.js",
"preload.js",
"renderer.js",
"index.html",
"styles.css",
"robot.png",
"config.yaml"
],
"scripts": {
"start": "electron .",
"postinstall": "npx @electron/rebuild@3.7.2 -w node-pty -f"
},
"keywords": [
"ai",
"multi-agent",
"orchestrator",
"electron"
],
"author": "John Wedgbury",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/appoly/multiagent-chat.git"
},
"homepage": "https://github.com/appoly/multiagent-chat#readme",
"bugs": {
"url": "https://github.com/appoly/multiagent-chat/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"chokidar": "^3.5.3",
"electron": "^28.3.3",
"marked": "^17.0.1",
"node-pty": "^1.0.0",
"yaml": "^2.3.4"
}
}