-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 4.05 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 4.05 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
{
"name": "hydra",
"version": "0.2.61",
"description": "Orchestrate Claude Code and OpenAI Codex CLI agents in parallel",
"main": "./out/main/index.js",
"author": "jpdlr",
"license": "MIT",
"scripts": {
"dev": "unset ELECTRON_RUN_AS_NODE && electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"rebuild": "electron-builder install-app-deps",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"lint": "eslint .",
"brand:assets": "python3 scripts/generate-brand-assets.py",
"test": "vitest run",
"test:watch": "vitest",
"pack": "npm run build && electron-builder --dir",
"pack:win": "npm run build && electron-builder --win --x64 --dir",
"dist": "npm run build && electron-builder",
"dist:mac": "npm run build && electron-builder --mac",
"dist:win": "npm run build && electron-builder --win nsis --x64",
"dist:linux": "npm run build && electron-builder --linux --x64",
"dist:dry-run": "npm run build && electron-builder --publish never",
"dist:mac:dry-run": "npm run build && electron-builder --mac --publish never",
"dist:win:dry-run": "npm run build && electron-builder --win nsis --x64 --publish never",
"dist:linux:dry-run": "npm run build && electron-builder --linux --x64 --publish never",
"release:preflight": "node scripts/release-preflight.mjs",
"release:guard": "node scripts/release-guard.mjs",
"release:notes": "node scripts/release-notes.mjs",
"release:validate-win-artifacts": "node scripts/validate-win-update-artifacts.mjs",
"deploy": "bash scripts/deploy-local.sh",
"firebase:login": "firebase login:use phoenixbiolabs@gmail.com || true",
"firebase:deploy:functions": "npm run firebase:login && cd firebase-backend/functions && npm run build && cd .. && firebase deploy --only functions",
"firebase:deploy:rules": "npm run firebase:login && cd firebase-backend && firebase deploy --only firestore:rules",
"firebase:deploy:hosting": "npm run firebase:login && cd hydra-remote && npm run build && cd ../firebase-backend && rm -rf public && cp -r ../hydra-remote/dist public && firebase deploy --only hosting",
"firebase:deploy:all": "npm run firebase:login && cd firebase-backend/functions && npm run build && cd ../../hydra-remote && npm run build && cd ../firebase-backend && rm -rf public && cp -r ../hydra-remote/dist public && firebase deploy"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@electron-toolkit/utils": "^4.0.0",
"@modelcontextprotocol/sdk": "^1.26.0",
"@monaco-editor/react": "^4.7.0",
"@pierre/diffs": "^1.1.20",
"@pierre/trees": "^1.0.0-beta.3",
"@xterm/addon-image": "^0.9.0",
"@xterm/addon-unicode11": "^0.9.0",
"@xterm/addon-webgl": "^0.19.0",
"electron-updater": "^6.7.3",
"firebase": "^10.14.1",
"monaco-editor": "^0.55.1",
"node-pty": "^1.0.0",
"qrcode": "^1.5.4",
"react-markdown": "^10.1.0",
"ws": "^8.19.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@electron/rebuild": "^3.7.0",
"@testing-library/jest-dom": "^6.6.0",
"@testing-library/react": "^16.1.0",
"@types/qrcode": "^1.5.6",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitejs/plugin-react": "^4.3.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"electron": "^33.4.11",
"electron-builder": "^25.1.0",
"electron-vite": "^2.3.0",
"eslint": "^9.39.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.3.0",
"jsdom": "^25.0.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"typescript": "^5.6.0",
"vite": "^5.4.0",
"vitest": "^2.1.0"
}
}