-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.19 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.19 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
{
"name": "agent-tree",
"version": "0.1.0",
"description": "Luxen desktop workspace for managing agent trees, shared context, and live multi-agent sessions.",
"productName": "Agent Tree",
"main": "electron/main.js",
"homepage": "https://github.com/LuxenAI/agent-tree",
"repository": {
"type": "git",
"url": "https://github.com/LuxenAI/agent-tree.git"
},
"bin": {
"agent-tree": "./bin/agent-tree.js"
},
"files": [
"bin",
"electron",
"shared",
"ui",
"README.md",
"LICENSE"
],
"scripts": {
"start": "electron .",
"dev": "electron .",
"check": "node --check bin/agent-tree.js && node --check electron/main.js && node --check electron/preload.js && node --check electron/context-store.js && node --check electron/swarm-runtime.js && node --check ui/app.js",
"pack:check": "npm pack --dry-run",
"prepack": "npm run check"
},
"dependencies": {
"electron": "^35.0.0",
"@fontsource/plus-jakarta-sans": "^5.2.8"
},
"keywords": [
"electron",
"desktop",
"agents",
"multi-agent",
"developer-tools",
"shared-context",
"codex",
"claude"
],
"license": "MIT",
"engines": {
"node": ">=20"
}
}