import os from 'node:os'; import path from 'node:path'; export function expandHome(p) { if (!p) return p; if (p === '~') return os.homedir(); if (p.startsWith('~/')) return path.join(os.homedir(), p.slice(2)); return p; }