import { runCheckCodePlanCli } from "./lib/checkCode/plan"; try { console.log(JSON.stringify(runCheckCodePlanCli(process.argv.slice(2)))); } catch (error) { console.error(error instanceof Error ? error.message : String(error)); process.exitCode = 1; }