#!/usr/bin/env node /** * CLI entry point - thin shell that injects process.* dependencies. * * This is the executable entry point (package.json bin). * All it does is inject process.* dependencies and call runCliMain(). * * Why this thin layer? * - Makes the CLI testable without spawning subprocesses * - Keeps process.* access in one place * - Enables dependency injection for streams, exit, etc. */ export {}; //# sourceMappingURL=cli.d.ts.map