-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.17 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
{
"name": "agentdeck",
"productName": "AgentDeck",
"version": "0.1.0-alpha.0",
"type": "module",
"private": true,
"bin": {
"deck": "bin/deck.tsx"
},
"main": "electron/main.cjs",
"scripts": {
"test": "bun test",
"typecheck": "tsc --noEmit && tsc -p web/tsconfig.json --noEmit",
"deck": "bun bin/deck.tsx",
"web:dev": "vite",
"web:build": "vite build",
"electron:dev": "node electron/dev-launch.cjs",
"app": "bun run web:build && bun run electron:dev",
"app:smoke": "DECK_SMOKE=1 bun run electron:dev"
},
"dependencies": {
"@fontsource/fraunces": "^5.2.9",
"@fontsource/jetbrains-mono": "^5.2.8",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"ink": "^7.1.0",
"lucide-react": "^1.23.0",
"node-pty": "^1.1.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"simple-icons": "14.15.0"
},
"devDependencies": {
"@electron/rebuild": "^4.1.0",
"@types/bun": "^1.3.14",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"electron": "^43.0.0",
"ink-testing-library": "^4.0.0",
"typescript": "^6.0.3",
"vite": "^8.1.2"
}
}