import { access } from "node:fs/promises"; export async function exists(path: string): Promise { try { await access(path); return true; } catch { return false; } }