-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.19 KB
/
package.json
File metadata and controls
42 lines (42 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
{
"name": "triad-workbench",
"version": "0.1.0",
"private": true,
"description": "CLI-native multi-agent coding workbench for Claude Code, Codex CLI, Gemini CLI, and Ollama.",
"type": "module",
"main": "out/main/index.js",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"planning:check": "node scripts/planning-check.js",
"planning:sync": "node scripts/planning-sync.js"
},
"dependencies": {
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"better-sqlite3": "^11.8.1",
"electron": "^37.2.1",
"node-pty": "^1.0.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"uuid": "^11.1.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^24.3.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^5.0.2",
"electron-vite": "^4.0.0",
"jsdom": "^28.1.0",
"typescript": "^5.9.2",
"vite": "^7.1.3",
"vitest": "^3.2.4"
}
}