- 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
30 lines
830 B
JSON
30 lines
830 B
JSON
{
|
|
"name": "daemon",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"module": "src/index.ts",
|
|
"scripts": {
|
|
"dev": "bun --env-file=../../.env run --watch src/index.ts",
|
|
"build": "bun --env-file=../../.env build src/index.ts --compile --outfile dist/code-daemon",
|
|
"start": "bun --env-file=../../.env ./dist/code-daemon",
|
|
"check-types": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@code/backend": "workspace:*",
|
|
"@code/env": "workspace:*",
|
|
"@code/primitives": "workspace:*",
|
|
"@effect/platform-bun": "catalog:",
|
|
"@rivet-dev/agentos": "catalog:",
|
|
"convex": "catalog:",
|
|
"effect": "catalog:",
|
|
"rivetkit": "2.3.7"
|
|
},
|
|
"devDependencies": {
|
|
"@code/config": "workspace:*",
|
|
"@types/bun": "catalog:",
|
|
"@types/node": "^22.13.14",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|