forked from realproject7/quadwork
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.93 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.93 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
{
"name": "quadwork",
"version": "1.13.1",
"description": "Unified dashboard for multi-agent coding teams — 4 AI agents, one terminal",
"bin": {
"quadwork": "./bin/quadwork.js"
},
"files": [
"bin/",
"bridges/",
"server/",
"templates/",
"out/"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "node server/",
"lint": "eslint",
"server": "node server/",
"prepack": "npm run build",
"release:patch": "npm version patch && git push origin main --follow-tags && VERSION=$(node -p 'require(\"./package.json\").version') && gh release create \"v$VERSION\" --generate-notes --latest && npm publish",
"release:minor": "npm version minor && git push origin main --follow-tags && VERSION=$(node -p 'require(\"./package.json\").version') && gh release create \"v$VERSION\" --generate-notes --latest && npm publish",
"release:major": "npm version major && git push origin main --follow-tags && VERSION=$(node -p 'require(\"./package.json\").version') && gh release create \"v$VERSION\" --generate-notes --latest && npm publish"
},
"engines": {
"node": ">=20"
},
"keywords": [
"ai",
"agents",
"multi-agent",
"coding",
"dashboard",
"terminal",
"claude",
"codex",
"quadwork"
],
"repository": {
"type": "git",
"url": "https://github.com/realproject7/quadwork.git"
},
"license": "MIT",
"dependencies": {
"express": "^5.2.1",
"multer": "^2.1.1",
"node-pty": "^1.2.0-beta.12",
"ws": "^8.20.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"eslint": "^9",
"eslint-config-next": "16.2.1",
"next": "16.2.4",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"tailwindcss": "^4",
"typescript": "^5"
}
}