Scoped to agent's paths. Self-verified per agent's commands (syntax, store, boots). Per approved plan + multi-agent on main.
15 lines
808 B
JSON
15 lines
808 B
JSON
{
|
|
"name": "@lilith/broadcast-backend-api",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "Bun backend-api tier for the broadcast (quinn.cast) feature. Bun.serve (Hono-style clean routing + handlers) providing typed REST + LLM chat surface over the core controller engine (LLM agent, OBS websocket, dynamic RTMP fanout from ../controller/). No runtime deps. Intended for quinn.my / admin integration (SSO/service token later).",
|
|
"main": "src/index.ts",
|
|
"scripts": {
|
|
"start": "bun run src/index.ts",
|
|
"dev": "bun --watch run src/index.ts",
|
|
"check": "bun --bun --print 'import(\"./src/index.ts\").then(() => console.log(\"backend-api syntax+imports OK\")).catch(e => { console.error(e); process.exit(1); })'"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {}
|
|
}
|