-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.98 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 3.98 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
{
"name": "agent-dock",
"version": "0.2.0",
"private": true,
"type": "module",
"main": "out/main/main.js",
"scripts": {
"dev": "cross-env NODE_OPTIONS=--experimental-sqlite electron-vite dev",
"dev:1": "cross-env NODE_OPTIONS=--experimental-sqlite node scripts/dev-instance.js 1",
"dev:2": "cross-env NODE_OPTIONS=--experimental-sqlite node scripts/dev-instance.js 2",
"dev:3": "cross-env NODE_OPTIONS=--experimental-sqlite node scripts/dev-instance.js 3",
"build": "tsc -b && electron-vite build",
"typecheck": "tsc -b --noEmit",
"start": "cross-env NODE_OPTIONS=--experimental-sqlite electron-vite preview",
"dist:win": "electron-vite build && electron-builder --win --x64 --config electron-builder.yml",
"pack": "electron-vite build && electron-builder --win --x64 --config electron-builder.yml --publish never",
"dist:win:publish": "electron-vite build && electron-builder --win --x64 --config electron-builder.yml --publish always",
"bump": "bun run scripts/bump-version.ts",
"lint": "biome check .",
"format": "biome check --write .",
"test": "vitest run",
"test:unit": "vitest run --project unit",
"test:integration": "vitest run --project integration",
"test:acceptance": "vitest run --project acceptance",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:e2e:trace": "playwright test --trace=on",
"test:e2e:ui": "playwright test --ui",
"test:e2e:devtools": "cross-env AGENTDOCK_E2E_DEVTOOLS=1 playwright test --headed",
"test:e2e:reuse": "cross-env AGENTDOCK_E2E_REUSE=1 playwright test --grep @reuse",
"test:e2e:fast": "cross-env AGENTDOCK_E2E_REUSE=1 playwright test",
"e2e:run": "bun run e2e/runner.ts",
"e2e:classify": "bun run e2e/debugging/classify-latest.ts",
"e2e:suggest-fix": "bun run e2e/debugging/suggest-fix-latest.ts",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"acceptance:phase0": "vitest run scripts/acceptance/phase0-foundation.test.ts",
"acceptance:phase1": "vitest run scripts/acceptance/phase1-daemon-hono.test.ts",
"acceptance:phase2": "vitest run scripts/acceptance/phase2-hono-client.test.ts",
"acceptance:phase3": "vitest run scripts/acceptance/phase3-electron-boot.test.ts",
"acceptance:phase4": "vitest run scripts/acceptance/phase4-ipc.test.ts",
"acceptance:all": "vitest run scripts/acceptance/",
"kill-all": "bun run scripts/kill-all.ts",
"debug": "bun run scripts/debug-start.ts",
"download-fonts": "bun run scripts/download-fonts.ts",
"prebuild": "bun run download-fonts"
},
"dependencies": {
"@ai-sdk/devtools": "^0.0.18",
"@hono/node-server": "^2.0.4",
"@hono/zod-validator": "^0.8.0",
"@tanstack/query-core": "^5.101.0",
"@tanstack/react-query": "^5.101.0",
"@tanstack/react-router": "^1.120.3",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"ai": "^6.0.195",
"drizzle-orm": "^1.0.0-rc.3",
"electron-updater": "^6.8.9",
"hono": "^4.12.25",
"i18next": "^26.3.2",
"lucide-react": "^1.21.0",
"nanoid": "^5.1.11",
"node-pty": "^1.1.0",
"pino": "^10.3.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-i18next": "^17.0.8",
"rimraf": "^6.1.3",
"ws": "^8.21.0",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@flue/cli": "^1.0.0-beta.9",
"@playwright/test": "^1.60.0",
"@tanstack/react-router-devtools": "^1.120.3",
"@tanstack/router-plugin": "^1.120.3",
"@types/node": "^25.9.1",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.6",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^4.5.2",
"@vitest/coverage-v8": "^4.1.8",
"cross-env": "^7.0.3",
"drizzle-kit": "^0.31.10",
"electron": "^42.4.0",
"electron-builder": "^26.15.2",
"electron-vite": "^5.0.0",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^4.1.8"
}
}