/** * Returns the correct command name for the current platform. * On Windows, Node.js package manager commands (npm, npx, yarn, pnpm) are * implemented as .cmd scripts and require the .cmd extension when spawned * without `shell: true`. * * Note: `bun` uses a native executable (bun.exe) on Windows, not a .cmd script, * so it doesn't need special handling. * * @param command The base command name (e.g., 'npm', 'yarn', 'pnpm') * @returns The platform-appropriate command name */ export declare function getPlatformCommand(command: string): string; //# sourceMappingURL=shell-utils.d.ts.map