-
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.68 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.68 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": "dex",
"version": "0.1.0",
"description": "Electron desktop app that orchestrates fresh Claude Code instances per spec-kit phase",
"main": "dist/main/index.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"start": "electron dist/main/index.js",
"build:start": "npm run build && npm start",
"test:core": "node --test --experimental-strip-types src/core/__tests__/agentOverlay.test.ts src/core/__tests__/agentProfile.test.ts src/core/__tests__/appConfig.test.ts src/core/__tests__/context.test.ts src/core/__tests__/dexConfig.test.ts src/core/__tests__/finalize.test.ts src/core/__tests__/gap-analysis.test.ts src/core/__tests__/phase-lifecycle.test.ts src/core/__tests__/timelineLayout.test.ts",
"test:core:all": "node --test --experimental-strip-types 'src/core/__tests__/*.test.ts'",
"test:renderer": "vitest run",
"test": "npm run test:core && npm run test:renderer && npm run check:size",
"check:size": "bash scripts/check-size.sh"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.45",
"d3-selection": "^3.0.0",
"d3-shape": "^3.2.0",
"d3-zoom": "^3.0.0",
"electron": "^41.2.1",
"gsap": "^3.12.5",
"lucide-react": "^0.460.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/d3-selection": "^3.0.10",
"@types/d3-shape": "^3.1.6",
"@types/d3-zoom": "^3.0.8",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"jsdom": "^29.1.0",
"typescript": "^5.6.3",
"vite": "^6.0.0",
"vitest": "^4.1.5"
}
}