- Archive dormant apps (daemon, desktop, native, tui) and superseded packages/server into repos/ for reference - Archive 21 dead web components (chat page shell, work-os cluster, strays) into repos/web/; keep reused message-rendering primitives in components/chat - Merge @code/work-os into @code/primitives; work.ts absorbed via ./work subpath and barrel export; update all four importers - Add docs/futures.md tracking audio/video (blocked at Flue + provider), web layout cleanup, and message rendering quality - Repoint dev:zopu script to @code/agents (the live Flue server) - Note repos/ reference-code convention in AGENTS.md
22 lines
404 B
JSON
22 lines
404 B
JSON
{
|
|
"name": "tui",
|
|
"private": true,
|
|
"type": "module",
|
|
"module": "src/index.tsx",
|
|
"scripts": {
|
|
"dev": "bun run --watch src/index.tsx",
|
|
"check-types": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@opentui/core": "^0.4.4",
|
|
"@opentui/react": "^0.4.4",
|
|
"react": "^19.2.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5"
|
|
}
|
|
}
|