-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.79 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.79 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "comux",
"version": "0.0.11",
"description": "Project-scoped agent cockpit for coordinating coding work across terminal sessions.",
"type": "module",
"author": "Valentina Alexander",
"license": "MIT",
"homepage": "https://github.com/BunsDev/comux#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/BunsDev/comux.git"
},
"bugs": {
"url": "https://github.com/BunsDev/comux/issues"
},
"keywords": [
"agents",
"terminal",
"tmux",
"worktree",
"git",
"openclaw",
"coding-agents"
],
"engines": {
"node": ">=18.11.0"
},
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist/**/*",
"comux",
"README.md",
"docs/README.md",
"docs/DEMO-LOOP.md",
"docs/COVEN-DEMO-LOOP.md",
"docs/COVEN-SESSIONS.md",
"docs/PRODUCT-SPEC.md",
"docs/SMOKE.md",
"CONTRIBUTING.md",
"LICENSE"
],
"scripts": {
"build": "pnpm run generate:hooks-docs && pnpm run build:frontend && tsc",
"build:frontend": "pnpm --filter comux-frontend run build",
"generate:hooks-docs": "node scripts/generate-hooks-docs.js",
"clean": "rm -rf dist src/utils/generated-agents-doc.ts",
"dev": "pnpm run generate:hooks-docs && tsc && COMUX_DEV=true COMUX_DEV_WATCH=false node dist/index.js",
"dev:watch": "pnpm run generate:hooks-docs && tsc && pnpm run dev:watch:run",
"dev:watch:run": "node scripts/dev-watch-run.js",
"dev:doctor": "pnpm run generate:hooks-docs && tsc && node ./comux doctor",
"typecheck": "pnpm run generate:hooks-docs && tsc --noEmit",
"test": "vitest --run",
"prepublishOnly": "pnpm run build",
"smoke:pack": "npm pack --dry-run"
},
"bin": {
"comux": "comux"
},
"dependencies": {
"bonjour-service": "^1.3.0",
"chalk": "^5.3.0",
"chokidar": "^4.0.3",
"cli-highlight": "^2.1.11",
"ink": "^5.0.1",
"ink-text-input": "^6.0.0",
"p-queue": "^9.0.0",
"qrcode-terminal": "^0.12.0",
"react": "^18.2.0",
"selfsigned": "^2.4.1",
"string-width": "^7.2.0",
"vue": "^3.5.22",
"ws": "^8.18.3"
},
"devDependencies": {
"@playwright/test": "^1.55.1",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/ws": "^8.18.1",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^1.0.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^6.0.0",
"ink-testing-library": "^4.0.0",
"npm-run-all2": "^8.0.4",
"strip-ansi": "^7.1.2",
"tsx": "^4.7.0",
"typescript": "^5.9.2",
"vite": "^6.4.2",
"vitest": "^1.6.1"
},
"packageManager": "pnpm@10.14.0",
"publishConfig": {
"access": "public"
}
}