-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.25 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.25 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
{
"name": "mexus-cli",
"version": "1.0.2",
"description": "Local web console for managing multiple CLI AI Agent instances in parallel",
"type": "module",
"bin": {
"nexus": "./packages/server/dist/cli.mjs"
},
"files": [
"packages/server/dist/",
"packages/web/dist/",
"scripts/"
],
"scripts": {
"dev": "pnpm run build:web && NEXUS_PROJECT_DIR=$PWD tsx packages/server/src/cli.ts",
"dev:full": "NEXUS_PROJECT_DIR=$PWD pnpm -r --parallel dev",
"build:web": "pnpm --filter @nexus/web build",
"build:server": "pnpm --filter @nexus/server build",
"build": "pnpm run build:web && pnpm run build:server",
"start": "NEXUS_PROJECT_DIR=$PWD node packages/server/dist/cli.mjs",
"postinstall": "node scripts/postinstall.mjs",
"prepublishOnly": "pnpm run build"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"fastify": "^5.2.0",
"@fastify/websocket": "^11.0.0",
"@fastify/static": "^8.1.0",
"node-pty": "^1.0.0",
"chokidar": "^4.0.0",
"simple-git": "^3.27.0",
"js-yaml": "^4.1.0",
"open": "^10.1.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"node-pty"
]
},
"keywords": ["ai", "agent", "claude", "terminal", "pty", "manager"],
"license": "MIT"
}