-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 794 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 794 Bytes
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
{
"name": "@davstack/tui",
"version": "0.5.6",
"license": "MIT",
"type": "module",
"description": "Long-running terminal UI that spawns, owns, and surfaces the davstack daemons (vitest-server, logs-server).",
"scripts": {
"test": "pnpm -w exec vitest run --project tui"
},
"bin": {
"davstack": "./bin/davstack.mjs"
},
"files": [
"bin/**",
"src/**"
],
"engines": {
"node": ">=20"
},
"dependencies": {
"@davstack/open-agents": "workspace:*",
"commander": "^12.0.0",
"ink": "^5.0.1",
"react": "^18.3.1",
"tsx": "^4.19.0"
},
"devDependencies": {
"@types/node": "^25.9.1",
"@types/react": "^18.3.3",
"ink-testing-library": "^4.0.0",
"typescript": "^5.0.0"
},
"publishConfig": {
"access": "public"
}
}