b843eea9ae
- Add auto-daemon.ts: ensureDaemonRunning() checks health, reads pidfile, spawns daemon if needed, polls health up to 3s - Rewrite index.ts: commander-based CLI with all subcommands (health, open, list, get, kill, navigate, click, type, scroll, eval, wait, screenshot, text, html, profiles) - Add daemon project reference to cli tsconfig
10 lines
202 B
JSON
10 lines
202 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": "./src"
|
|
},
|
|
"include": ["src"],
|
|
"references": [{ "path": "../core" }, { "path": "../daemon" }]
|
|
}
|