-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.93 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.93 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
{
"name": "@gbasin/agentboard",
"version": "0.2.20",
"type": "module",
"description": "Web GUI for tmux optimized for AI agent TUIs",
"author": "gbasin",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gbasin/agentboard.git"
},
"bin": {
"agentboard": "./bin/agentboard"
},
"files": [
"bin/**/*",
"README.md"
],
"engines": {
"bun": ">=1.3.6"
},
"optionalDependencies": {
"@gbasin/agentboard-darwin-arm64": "0.2.5",
"@gbasin/agentboard-darwin-x64": "0.2.5",
"@gbasin/agentboard-linux-x64": "0.2.5",
"@gbasin/agentboard-linux-arm64": "0.2.5"
},
"scripts": {
"dev": "concurrently -k \"bun run dev:server\" \"bun run dev:client\"",
"dev:server": "bun scripts/dev-server.ts",
"dev:client": "vite --host",
"build": "vite build",
"start": "bun src/server/index.ts",
"lint": "oxlint .",
"typecheck": "tsc --noEmit",
"test": "bun scripts/test-runner.ts",
"deps:risk": "bun scripts/dependency-risk.ts",
"deps:risk:ci": "bun scripts/dependency-risk.ts --threshold critical",
"deps:risk:json": "bun scripts/dependency-risk.ts --json",
"test:coverage": "bun scripts/test-runner.ts --coverage --coverage-reporter=lcov --skip-isolated && bun run coverage:all",
"coverage:all": "bun scripts/coverage-all.ts",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"prepare": "git config core.hooksPath .githooks",
"release:patch": "bun scripts/release.ts patch",
"release:minor": "bun scripts/release.ts minor",
"release:major": "bun scripts/release.ts major"
},
"dependencies": {
"@base-ui/react": "^1.2.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"@untitledui-icons/react": "^1.0.3",
"@xterm/addon-clipboard": "^0.2.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-progress": "^0.1.0",
"@xterm/addon-search": "^0.15.0",
"@xterm/addon-serialize": "^0.14.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/addon-webgl": "^0.18.0",
"@xterm/xterm": "^5.5.0",
"clsx": "^2.1.1",
"hono": "^4.6.10",
"motion": "^12.25.0",
"node-pty": "^1.1.0",
"pino": "^10.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^3.4.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@playwright/test": "^1.55.0",
"@types/node": "^22.10.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-test-renderer": "^19.1.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"bun-types": "^1.3.5",
"concurrently": "^8.2.2",
"oxlint": "^1.38.0",
"pino-pretty": "^13.1.3",
"postcss": "^8.4.49",
"react-test-renderer": "18.3.1",
"tailwindcss": "^3.4.14",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vite-plugin-pwa": "^1.2.0"
}
}