@yabasha/gex 1.3.7 → 1.3.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli-bun.mjs CHANGED
@@ -1,10 +1,4 @@
1
1
  #!/usr/bin/env bun
2
- var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
3
- get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
4
- }) : x)(function(x) {
5
- if (typeof require !== "undefined") return require.apply(this, arguments);
6
- throw Error('Dynamic require of "' + x + '" is not supported');
7
- });
8
2
 
9
3
  // src/runtimes/bun/commands.ts
10
4
  import path7 from "path";
@@ -894,10 +888,10 @@ async function run(argv = process.argv) {
894
888
  // src/runtimes/bun/cli.entry.ts
895
889
  var isMainModule = (() => {
896
890
  try {
897
- if (typeof __require !== "undefined" && typeof module !== "undefined") {
898
- return __require.main === module;
891
+ if (typeof import.meta !== "undefined" && "main" in import.meta) {
892
+ return import.meta.main === true;
899
893
  }
900
- if (typeof import.meta !== "undefined") {
894
+ if (typeof import.meta !== "undefined" && typeof process !== "undefined") {
901
895
  return import.meta.url === `file://${process.argv[1]}`;
902
896
  }
903
897
  return false;
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/runtimes/bun/commands.ts","../src/shared/cli/install.ts","../src/shared/cli/output.ts","../src/shared/report/json.ts","../src/shared/report/md.ts","../src/shared/cli/parser.ts","../src/shared/npm-cli.ts","../src/shared/cli/loader.ts","../src/shared/cli/outdated.ts","../src/shared/cli/utils.ts","../src/runtimes/bun/report.ts","../src/shared/transform.ts","../src/runtimes/bun/package-manager.ts","../src/runtimes/bun/cli.ts","../src/runtimes/bun/cli.entry.ts"],"sourcesContent":["/**\n * @fileoverview CLI command definitions and handlers for Bun runtime\n */\n\nimport path from 'node:path'\nimport { readFile } from 'node:fs/promises'\n\nimport { Command } from 'commander'\n\nimport type { OutputFormat } from '../../shared/types.js'\nimport { installFromReport, printFromReport } from '../../shared/cli/install.js'\nimport { outputReport } from '../../shared/cli/output.js'\nimport { isMarkdownReportFile, loadReportFromFile } from '../../shared/cli/parser.js'\nimport {\n normalizeUpdateSelection,\n handleOutdatedWorkflow,\n resolveOutdatedWithNpmView,\n formatOutdatedTable,\n} from '../../shared/cli/outdated.js'\nimport { ASCII_BANNER, getToolVersion } from '../../shared/cli/utils.js'\n\nimport { produceReport } from './report.js'\nimport { bunUpdate, bunPmLs } from './package-manager.js'\n\n/**\n * Adds common options to a command\n *\n * @param cmd - Command to add options to\n * @param options - Configuration for which options to add\n * @returns Modified command\n */\nfunction addCommonOptions(cmd: Command, { allowOmitDev }: { allowOmitDev: boolean }): Command {\n cmd\n .option(\n '-f, --output-format <format>',\n 'Output format: md or json',\n (val) => (val === 'md' ? 'md' : 'json'),\n 'json',\n )\n .option('-o, --out-file <path>', 'Write report to file')\n .option('--full-tree', 'Include full bun pm ls tree (when available)', false)\n .option('-c, --check-outdated', 'List outdated packages instead of printing the report', false)\n .option(\n '-u, --update-outdated [packages...]',\n 'Update outdated packages (omit package names to update every package)',\n )\n\n if (allowOmitDev) {\n cmd.option('--omit-dev', 'Exclude devDependencies (local only)', false)\n }\n\n return cmd\n}\n\n/**\n * Creates the local command handler\n *\n * @param program - Commander program instance\n * @returns Command instance\n */\nexport function createLocalCommand(program: Command): Command {\n const localCmd = program\n .command('local', { isDefault: true })\n .description(\"Generate a report for the current Bun project's dependencies\")\n\n addCommonOptions(localCmd, { allowOmitDev: true })\n\n localCmd.action(async (opts) => {\n const outputFormat = (opts.outputFormat ?? 'json') as OutputFormat\n const outFile = opts.outFile as string | undefined\n const fullTree = Boolean(opts.fullTree)\n const omitDev = Boolean(opts.omitDev)\n const cwd = process.cwd()\n\n const selection = normalizeUpdateSelection(opts.updateOutdated)\n const result = await handleOutdatedWorkflow({\n checkOutdated: Boolean(opts.checkOutdated),\n selection,\n contextLabel: 'local',\n outFile,\n fetchOutdated: async () => {\n const tree = await bunPmLs({ cwd, omitDev })\n const manifest = await readPackageManifest(cwd)\n const declared = {\n ...(manifest?.dependencies || {}),\n ...(manifest?.optionalDependencies || {}),\n ...(manifest?.devDependencies || {}),\n }\n\n const packages = Object.entries(tree.dependencies).map(([name, node]) => ({\n name,\n current: node.version,\n declared: declared[name],\n type: 'prod',\n }))\n\n if (tree.devDependencies) {\n for (const [name, node] of Object.entries(tree.devDependencies)) {\n packages.push({\n name,\n current: node.version,\n declared: declared[name],\n type: 'dev',\n })\n }\n }\n\n return resolveOutdatedWithNpmView(packages)\n },\n updateRunner: selection.shouldUpdate\n ? async (packages) => {\n await bunUpdate({ cwd, packages })\n }\n : undefined,\n })\n if (opts.checkOutdated) {\n if (result.outdated.length === 0) console.log('All local packages are up to date.')\n else console.log(formatOutdatedTable(result.outdated))\n }\n if (!result.proceed) return\n\n // Only set finalOutFile when explicitly provided via --out-file\n const finalOutFile = outFile\n\n const { report, markdownExtras } = await produceReport('local', {\n outputFormat,\n outFile: finalOutFile,\n fullTree,\n omitDev,\n })\n\n await outputReport(report, outputFormat, finalOutFile, markdownExtras)\n })\n\n return localCmd\n}\n\n/**\n * Creates the global command handler\n *\n * @param program - Commander program instance\n * @returns Command instance\n */\nexport function createGlobalCommand(program: Command): Command {\n const globalCmd = program\n .command('global')\n .description('Generate a report of globally installed Bun packages')\n\n addCommonOptions(globalCmd, { allowOmitDev: false })\n\n globalCmd.action(async (opts) => {\n const outputFormat = (opts.outputFormat ?? 'json') as OutputFormat\n const outFile = opts.outFile as string | undefined\n const fullTree = Boolean(opts.fullTree)\n const cwd = process.cwd()\n\n const selection = normalizeUpdateSelection(opts.updateOutdated)\n const result = await handleOutdatedWorkflow({\n checkOutdated: Boolean(opts.checkOutdated),\n selection,\n contextLabel: 'global',\n outFile,\n fetchOutdated: async () => {\n const tree = await bunPmLs({ global: true })\n const packages = Object.entries(tree.dependencies).map(([name, node]) => ({\n name,\n current: node.version,\n type: 'global',\n }))\n return resolveOutdatedWithNpmView(packages)\n },\n updateRunner: selection.shouldUpdate\n ? async (packages) => {\n await bunUpdate({ cwd, global: true, packages })\n }\n : undefined,\n })\n if (opts.checkOutdated) {\n if (result.outdated.length === 0) console.log('All global packages are up to date.')\n else console.log(formatOutdatedTable(result.outdated))\n }\n if (!result.proceed) return\n\n // Only set finalOutFile when explicitly provided via --out-file\n const finalOutFile = outFile\n\n const { report, markdownExtras } = await produceReport('global', {\n outputFormat,\n outFile: finalOutFile,\n fullTree,\n })\n\n await outputReport(report, outputFormat, finalOutFile, markdownExtras)\n })\n\n return globalCmd\n}\n\n/**\n * Creates the read command handler\n *\n * @param program - Commander program instance\n * @returns Command instance\n */\nexport function createReadCommand(program: Command): Command {\n const readCmd = program\n .command('read')\n .description(\n 'Read a previously generated report (JSON or Markdown) and either print package names or install them',\n )\n .argument('[report]', 'Path to report file (JSON or Markdown)', 'bun-report.json')\n .option('-r, --report <path>', 'Path to report file (JSON or Markdown)')\n .option('-p, --print', 'Print package names/versions from the report (default)', false)\n .option('-i, --install', 'Install packages from the report using Bun', false)\n\n readCmd.action(async (reportArg: string | undefined, opts: any) => {\n const chosen = (opts.report as string | undefined) || reportArg || 'bun-report.json'\n const reportPath = path.resolve(process.cwd(), chosen)\n\n try {\n const parsed = await loadReportFromFile(reportPath)\n\n const doInstall = Boolean(opts.install)\n const doPrint = Boolean(opts.print) || !doInstall\n\n if (doPrint) {\n printFromReport(parsed)\n }\n if (doInstall) {\n await installFromReport(parsed, { cwd: process.cwd(), packageManager: 'bun' })\n }\n } catch (err: any) {\n const isMd = isMarkdownReportFile(reportPath)\n const hint = isMd\n ? 'Try generating a JSON report with: gex-bun global -f json -o global.json, then: gex-bun read global.json'\n : 'Specify a report path with: gex-bun read <path-to-report.json>'\n console.error(`Failed to read report at ${reportPath}: ${err?.message || err}`)\n console.error(hint)\n process.exitCode = 1\n }\n })\n\n return readCmd\n}\n\n/**\n * Creates and configures the main CLI program for Bun runtime\n *\n * @returns Configured Commander program\n */\nexport async function createProgram(): Promise<Command> {\n const program = new Command()\n .name('gex-bun')\n .description('GEX: Dependency auditing and documentation for Bun (local and global).')\n .version(await getToolVersion())\n\n program.addHelpText('beforeAll', `\\n${ASCII_BANNER}`)\n\n createLocalCommand(program)\n createGlobalCommand(program)\n createReadCommand(program)\n\n return program\n}\n\nasync function readPackageManifest(cwd: string): Promise<any | null> {\n try {\n const raw = await readFile(path.join(cwd, 'package.json'), 'utf8')\n return JSON.parse(raw)\n } catch {\n return null\n }\n}\n","/**\n * @fileoverview Package installation utilities for CLI\n */\n\nimport type { Report } from '../types.js'\n\ntype PackageManager = 'npm' | 'bun'\n\nexport type InstallOptions = {\n cwd: string\n packageManager?: PackageManager\n}\n\nconst INSTALL_COMMANDS: Record<\n PackageManager,\n { global: string[]; local: string[]; dev: string[] }\n> = {\n npm: {\n global: ['i', '-g'],\n local: ['i'],\n dev: ['i', '-D'],\n },\n bun: {\n global: ['add', '-g'],\n local: ['add'],\n dev: ['add', '-d'],\n },\n}\n\nconst MAX_BUFFER = 10 * 1024 * 1024\n\nfunction formatSpec(pkg: { name: string; version: string }): string {\n return pkg.version ? `${pkg.name}@${pkg.version}` : pkg.name\n}\n\n/**\n * Lazily obtain a promisified execFile so tests can mock built-ins reliably.\n */\nasync function getExecFileAsync(): Promise<\n (\n command: string,\n args?: readonly string[] | null,\n options?: any,\n ) => Promise<{ stdout: string; stderr: string }>\n> {\n const { execFile } = await import('node:child_process')\n const { promisify } = await import('node:util')\n return promisify(execFile) as any\n}\n\n/**\n * Installs packages from a report to the local environment\n *\n * @param report - The report containing packages to install\n * @param cwd - Current working directory for installation\n * @throws {Error} If npm installation fails\n */\nexport async function installFromReport(\n report: Report,\n options: InstallOptions | string,\n): Promise<void> {\n const opts = typeof options === 'string' ? { cwd: options } : options\n const { cwd, packageManager = 'npm' } = opts\n\n const globalPkgs = report.global_packages.map(formatSpec).filter(Boolean)\n const localPkgs = report.local_dependencies.map(formatSpec).filter(Boolean)\n const devPkgs = report.local_dev_dependencies.map(formatSpec).filter(Boolean)\n\n if (globalPkgs.length === 0 && localPkgs.length === 0 && devPkgs.length === 0) {\n console.log('No packages to install from report.')\n return\n }\n\n // Acquire execFileAsync once per run to keep logs grouped, while still mockable in tests\n const execFileAsync = await getExecFileAsync()\n const cmd = INSTALL_COMMANDS[packageManager]\n const binary = packageManager === 'bun' ? 'bun' : 'npm'\n\n if (globalPkgs.length > 0) {\n console.log(`Installing global: ${globalPkgs.join(' ')}`)\n await execFileAsync(binary, [...cmd.global, ...globalPkgs], { cwd, maxBuffer: MAX_BUFFER })\n }\n\n if (localPkgs.length > 0) {\n console.log(`Installing local deps: ${localPkgs.join(' ')}`)\n await execFileAsync(binary, [...cmd.local, ...localPkgs], { cwd, maxBuffer: MAX_BUFFER })\n }\n\n if (devPkgs.length > 0) {\n console.log(`Installing local devDeps: ${devPkgs.join(' ')}`)\n await execFileAsync(binary, [...cmd.dev, ...devPkgs], { cwd, maxBuffer: MAX_BUFFER })\n }\n}\n\n/**\n * Prints packages from a report to the console\n *\n * @param report - The report to print packages from\n */\nexport function printFromReport(report: Report): void {\n const lines: string[] = []\n\n if (report.global_packages.length > 0) {\n lines.push('Global Packages:')\n for (const p of report.global_packages) {\n lines.push(`- ${p.name}@${p.version}`)\n }\n }\n\n if (report.local_dependencies.length > 0) {\n if (lines.length) lines.push('')\n lines.push('Local Dependencies:')\n for (const p of report.local_dependencies) {\n lines.push(`- ${p.name}@${p.version}`)\n }\n }\n\n if (report.local_dev_dependencies.length > 0) {\n if (lines.length) lines.push('')\n lines.push('Local Dev Dependencies:')\n for (const p of report.local_dev_dependencies) {\n lines.push(`- ${p.name}@${p.version}`)\n }\n }\n\n if (lines.length === 0) {\n lines.push('(no packages found in report)')\n }\n\n console.log(lines.join('\\n'))\n}\n","/**\n * @fileoverview Report output utilities for CLI\n */\n\nimport path from 'node:path'\n\nimport { renderJson } from '../report/json.js'\nimport { renderMarkdown } from '../report/md.js'\nimport type { OutputFormat, Report } from '../types.js'\n\n/**\n * Outputs a report to console or file\n *\n * @param report - The report to output\n * @param format - Output format ('json' or 'md')\n * @param outFile - Optional file path to write to\n * @param markdownExtras - Additional metadata for markdown rendering\n */\nexport async function outputReport(\n report: Report,\n format: OutputFormat,\n outFile?: string,\n markdownExtras?: any,\n): Promise<void> {\n const content =\n format === 'json'\n ? renderJson(report)\n : renderMarkdown({ ...report, ...(markdownExtras || {}) })\n\n if (outFile) {\n const outDir = path.dirname(outFile)\n const { mkdir, writeFile } = await import('node:fs/promises')\n\n await mkdir(outDir, { recursive: true })\n await writeFile(outFile, content, 'utf8')\n\n console.log(`Wrote report to ${outFile}`)\n } else {\n console.log(content)\n }\n}\n","/**\n * @fileoverview JSON report rendering utilities\n */\n\nimport type { Report } from '../types.js'\n\n/**\n * Renders a Report object as formatted JSON string\n *\n * @param report - Report object to render\n * @returns Pretty-printed JSON string with consistent package ordering\n *\n * @example\n * ```typescript\n * import { renderJson } from './report/json.js'\n *\n * const report = {\n * report_version: '1.0',\n * timestamp: new Date().toISOString(),\n * tool_version: '0.3.2',\n * global_packages: [],\n * local_dependencies: [{ name: 'axios', version: '1.6.0', resolved_path: '/path/to/axios' }],\n * local_dev_dependencies: []\n * }\n *\n * const jsonOutput = renderJson(report)\n * console.log(jsonOutput) // Pretty-printed JSON\n * ```\n */\nexport function renderJson(report: Report): string {\n const r: Report = {\n ...report,\n global_packages: [...report.global_packages].sort((a, b) => a.name.localeCompare(b.name)),\n local_dependencies: [...report.local_dependencies].sort((a, b) => a.name.localeCompare(b.name)),\n local_dev_dependencies: [...report.local_dev_dependencies].sort((a, b) =>\n a.name.localeCompare(b.name),\n ),\n }\n return JSON.stringify(r, null, 2)\n}\n","/**\n * @fileoverview Markdown report rendering utilities\n */\n\nimport type { Report } from '../types.js'\n\n/**\n * Creates a markdown table from headers and row data\n *\n * @param headers - Array of table header strings\n * @param rows - Array of row data (each row is array of strings)\n * @returns Formatted markdown table string\n */\nfunction table(headers: string[], rows: string[][]): string {\n const header = `| ${headers.join(' | ')} |`\n const sep = `| ${headers.map(() => '---').join(' | ')} |`\n const body = rows.map((r) => `| ${r.join(' | ')} |`).join('\\n')\n return [header, sep, body].filter(Boolean).join('\\n')\n}\n\n/**\n * Renders a Report object as formatted Markdown\n *\n * @param report - Report object with optional project metadata\n * @returns Formatted Markdown string with tables and sections\n *\n * @example\n * ```typescript\n * import { renderMarkdown } from './report/md.js'\n *\n * const report = {\n * report_version: '1.0',\n * timestamp: new Date().toISOString(),\n * tool_version: '0.3.2',\n * project_name: 'my-project',\n * global_packages: [],\n * local_dependencies: [\n * { name: 'axios', version: '1.6.0', resolved_path: '/path/to/axios' }\n * ],\n * local_dev_dependencies: [],\n * project_description: 'My awesome project'\n * }\n *\n * const markdown = renderMarkdown(report)\n * console.log(markdown) // Formatted markdown with tables\n * ```\n */\nexport function renderMarkdown(\n report: Report & {\n project_description?: string\n project_homepage?: string\n project_bugs?: string\n },\n): string {\n const lines: string[] = []\n lines.push('# GEX Report')\n lines.push('')\n\n if (\n report.project_name ||\n report.project_version ||\n (report as any).project_description ||\n (report as any).project_homepage ||\n (report as any).project_bugs\n ) {\n lines.push('## Project Metadata')\n if (report.project_name) lines.push(`- Name: ${report.project_name}`)\n if (report.project_version) lines.push(`- Version: ${report.project_version}`)\n if ((report as any).project_description)\n lines.push(`- Description: ${(report as any).project_description}`)\n if ((report as any).project_homepage)\n lines.push(`- Homepage: ${(report as any).project_homepage}`)\n if ((report as any).project_bugs) lines.push(`- Bugs: ${(report as any).project_bugs}`)\n lines.push('')\n }\n\n if (report.global_packages.length > 0) {\n lines.push('## Global Packages')\n const rows = report.global_packages.map((p) => [p.name, p.version || '', p.resolved_path || ''])\n lines.push(table(['Name', 'Version', 'Path'], rows))\n lines.push('')\n }\n\n if (report.local_dependencies.length > 0) {\n lines.push('## Local Dependencies')\n const rows = report.local_dependencies.map((p) => [\n p.name,\n p.version || '',\n p.resolved_path || '',\n ])\n lines.push(table(['Name', 'Version', 'Path'], rows))\n lines.push('')\n }\n\n if (report.local_dev_dependencies.length > 0) {\n lines.push('## Local Dev Dependencies')\n const rows = report.local_dev_dependencies.map((p) => [\n p.name,\n p.version || '',\n p.resolved_path || '',\n ])\n lines.push(table(['Name', 'Version', 'Path'], rows))\n lines.push('')\n }\n\n lines.push('---')\n lines.push('_Generated by GEX_')\n\n return lines.join('\\n')\n}\n","/**\n * @fileoverview Report parsing utilities for CLI\n */\n\nimport { readFile } from 'node:fs/promises'\nimport path from 'node:path'\n\nimport type { PackageInfo, Report } from '../types.js'\n\n/**\n * Checks if a file path indicates a markdown report\n */\nexport function isMarkdownReportFile(filePath: string): boolean {\n const ext = path.extname(filePath).toLowerCase()\n return ext === '.md' || ext === '.markdown'\n}\n\n/**\n * Parses a markdown table and extracts package information\n *\n * @param lines - Array of file lines\n * @param startIndex - Index where table starts\n * @returns Array of package information\n */\nfunction parseMarkdownPackagesTable(lines: string[], startIndex: number): PackageInfo[] {\n const rows: PackageInfo[] = []\n if (!lines[startIndex] || !lines[startIndex].trim().startsWith('|')) return rows\n\n let i = startIndex + 2\n while (i < lines.length && lines[i].trim().startsWith('|')) {\n const cols = lines[i]\n .split('|')\n .map((c) => c.trim())\n .filter((_, idx, arr) => !(idx === 0 || idx === arr.length - 1))\n\n const [name = '', version = '', resolved_path = ''] = cols\n if (name) rows.push({ name, version, resolved_path })\n i++\n }\n return rows\n}\n\n/**\n * Parses a markdown report and converts it to a Report object\n *\n * @param md - Markdown content to parse\n * @returns Parsed Report object\n */\nexport function parseMarkdownReport(md: string): Report {\n const lines = md.split(/\\r?\\n/)\n\n const findSection = (title: string) =>\n lines.findIndex((l) => l.trim().toLowerCase() === `## ${title}`.toLowerCase())\n\n const parseSection = (idx: number): PackageInfo[] => {\n if (idx < 0) return []\n\n let i = idx + 1\n while (i < lines.length && !lines[i].trim().startsWith('|')) i++\n return parseMarkdownPackagesTable(lines, i)\n }\n\n const global_packages = parseSection(findSection('Global Packages'))\n const local_dependencies = parseSection(findSection('Local Dependencies'))\n const local_dev_dependencies = parseSection(findSection('Local Dev Dependencies'))\n\n const report: Report = {\n report_version: '1.0',\n timestamp: new Date().toISOString(),\n tool_version: 'unknown',\n global_packages,\n local_dependencies,\n local_dev_dependencies,\n }\n return report\n}\n\n/**\n * Loads and parses a report file (JSON or Markdown)\n *\n * @param reportPath - Path to the report file\n * @returns Parsed Report object\n * @throws {Error} If file cannot be read or parsed\n */\nexport async function loadReportFromFile(reportPath: string): Promise<Report> {\n const raw = await readFile(reportPath, 'utf8')\n\n if (isMarkdownReportFile(reportPath) || raw.startsWith('# GEX Report')) {\n return parseMarkdownReport(raw)\n }\n\n return JSON.parse(raw) as Report\n}\n","import { promisify } from 'node:util'\n\nexport type OutdatedInfo = {\n name: string\n current: string\n wanted: string\n latest: string\n type?: string\n}\n\nexport type NpmOutdatedOptions = {\n global?: boolean\n cwd?: string\n}\n\nexport type NpmUpdateOptions = {\n global?: boolean\n cwd: string\n packages?: string[]\n}\n\nasync function getExecFileAsync(): Promise<(\n command: string,\n args?: readonly string[] | null,\n options?: any,\n) => Promise<{ stdout: string; stderr: string }>> {\n const { execFile } = await import('node:child_process')\n return promisify(execFile) as any\n}\n\nexport async function npmOutdated(options: NpmOutdatedOptions = {}): Promise<OutdatedInfo[]> {\n const args = ['outdated', '--json']\n if (options.global) args.push('--global')\n\n try {\n const execFileAsync = await getExecFileAsync()\n const { stdout } = await execFileAsync('npm', args, {\n cwd: options.cwd,\n maxBuffer: 10 * 1024 * 1024,\n })\n return normalizeOutdated(stdout)\n } catch (error: any) {\n const stdout = typeof error?.stdout === 'string' ? error.stdout : ''\n if (stdout.trim()) {\n return normalizeOutdated(stdout)\n }\n throw formatNpmError(error, 'npm outdated')\n }\n}\n\nexport async function npmUpdate(options: NpmUpdateOptions): Promise<void> {\n const args = ['update']\n if (options.global) args.push('-g')\n if (options.packages && options.packages.length > 0) args.push(...options.packages)\n\n try {\n const execFileAsync = await getExecFileAsync()\n await execFileAsync('npm', args, {\n cwd: options.cwd,\n maxBuffer: 10 * 1024 * 1024,\n })\n } catch (error) {\n throw formatNpmError(error, 'npm update')\n }\n}\n\nfunction normalizeOutdated(stdout: string): OutdatedInfo[] {\n if (!stdout.trim()) return []\n let data: Record<string, any>\n try {\n data = JSON.parse(stdout)\n } catch {\n return []\n }\n\n if (!data) return []\n return Object.entries(data).map(([name, info]) => ({\n name,\n current: info?.current ? String(info.current) : '',\n wanted: info?.wanted ? String(info.wanted) : '',\n latest: info?.latest ? String(info.latest) : '',\n type: info?.type ? String(info.type) : undefined,\n }))\n}\n\nfunction formatNpmError(error: any, commandLabel: string): Error {\n const stderr = typeof error?.stderr === 'string' ? error.stderr.trim() : ''\n const message = stderr || error?.message || `${commandLabel} failed`\n return new Error(`${commandLabel} failed: ${message}`)\n}\n\nexport async function npmViewVersion(packageName: string): Promise<string> {\n try {\n const execFileAsync = await getExecFileAsync()\n const { stdout } = await execFileAsync('npm', ['view', packageName, 'version', '--json'], {\n maxBuffer: 5 * 1024 * 1024,\n })\n const parsed = JSON.parse(stdout)\n if (typeof parsed === 'string') return parsed\n if (Array.isArray(parsed)) return parsed[parsed.length - 1] ?? ''\n return ''\n } catch (error) {\n throw formatNpmError(error, `npm view ${packageName}`)\n }\n}\n","const frames = ['-', '\\\\', '|', '/'] as const\n\nexport type Loader = {\n stop: (finalMessage?: string) => void\n}\n\nexport function createLoader(message: string): Loader {\n if (!process.stdout.isTTY) {\n console.log(`${message}...`)\n return {\n stop(finalMessage) {\n if (finalMessage) console.log(finalMessage)\n },\n }\n }\n\n let index = 0\n const interval = globalThis.setInterval(() => {\n const frame = frames[index % frames.length]\n index += 1\n process.stdout.write(`\\r${message} ${frame}`)\n }, 80)\n\n return {\n stop(finalMessage) {\n globalThis.clearInterval(interval)\n process.stdout.write('\\r')\n if (finalMessage) {\n console.log(finalMessage)\n } else {\n process.stdout.write('\\x1b[2K')\n }\n },\n }\n}\n","import type { OutdatedInfo } from '../npm-cli.js'\nimport { npmViewVersion } from '../npm-cli.js'\n\nimport { createLoader } from './loader.js'\n\nexport type OutdatedEntry = OutdatedInfo\n\nexport type OutdatedSelection = {\n shouldUpdate: boolean\n updateAll: boolean\n packages: string[]\n}\n\nexport function normalizeUpdateSelection(value: unknown): OutdatedSelection {\n if (value === undefined) {\n return { shouldUpdate: false, updateAll: false, packages: [] }\n }\n if (value === true) {\n return { shouldUpdate: true, updateAll: true, packages: [] }\n }\n const packages = Array.isArray(value) ? value : typeof value === 'string' ? [value] : []\n const normalized = packages\n .flatMap((entry) =>\n String(entry)\n .split(',')\n .map((part) => part.trim()),\n )\n .filter(Boolean)\n\n return {\n shouldUpdate: true,\n updateAll: false,\n packages: normalized,\n }\n}\n\nexport function formatOutdatedTable(entries: OutdatedEntry[]): string {\n const headers = ['Name', 'Current', 'Wanted', 'Latest', 'Type']\n const rows = entries.map((entry) => [\n entry.name,\n entry.current || '-',\n entry.wanted || '-',\n entry.latest || '-',\n entry.type || '-',\n ])\n\n const widths = headers.map((header, index) =>\n Math.max(header.length, ...rows.map((row) => row[index].length)),\n )\n\n const formatRow = (columns: string[]) =>\n columns.map((col, idx) => col.padEnd(widths[idx], ' ')).join(' ')\n\n const lines = [formatRow(headers), formatRow(widths.map((w) => '-'.repeat(w)))]\n for (const row of rows) {\n lines.push(formatRow(row))\n }\n return lines.join('\\n')\n}\n\nexport type OutdatedWorkflowOptions = {\n checkOutdated: boolean\n selection: OutdatedSelection\n contextLabel: 'local' | 'global'\n outFile?: string\n fetchOutdated: () => Promise<OutdatedEntry[]>\n updateRunner?: (packages: string[]) => Promise<void>\n}\n\nexport type OutdatedWorkflowResult = {\n proceed: boolean\n outdated: OutdatedEntry[]\n}\n\nexport async function handleOutdatedWorkflow(\n opts: OutdatedWorkflowOptions,\n): Promise<OutdatedWorkflowResult> {\n if (!opts.checkOutdated && !opts.selection.shouldUpdate) {\n return { proceed: true, outdated: [] }\n }\n\n let fetchLoader: ReturnType<typeof createLoader> | undefined\n if (opts.checkOutdated || opts.selection.shouldUpdate) {\n fetchLoader = createLoader('Checking for outdated packages')\n }\n const outdated = await opts.fetchOutdated()\n fetchLoader?.stop('Finished checking outdated packages.')\n\n if (opts.selection.shouldUpdate && opts.updateRunner) {\n const packagesToUpdate = opts.selection.updateAll\n ? outdated.map((entry) => entry.name)\n : opts.selection.packages\n\n if (!packagesToUpdate || packagesToUpdate.length === 0) {\n if (opts.selection.updateAll) {\n console.log('No outdated packages to update.')\n } else {\n console.log('No packages were specified for updating.')\n }\n } else {\n const updateLoader = createLoader('Updating packages')\n await opts.updateRunner(packagesToUpdate)\n updateLoader.stop('Finished updating packages.')\n }\n }\n\n const proceed = !((opts.checkOutdated || opts.selection.shouldUpdate) && !opts.outFile)\n return { proceed, outdated }\n}\n\nexport type InstalledPackageInput = {\n name: string\n current: string\n declared?: string\n type?: string\n}\n\nexport async function resolveOutdatedWithNpmView(\n packages: InstalledPackageInput[],\n): Promise<OutdatedEntry[]> {\n const results: OutdatedEntry[] = []\n for (const pkg of packages) {\n try {\n const latest = await npmViewVersion(pkg.name)\n if (latest && pkg.current && latest !== pkg.current) {\n results.push({\n name: pkg.name,\n current: pkg.current,\n wanted: pkg.declared || latest,\n latest,\n type: pkg.type,\n })\n }\n } catch {\n continue\n }\n }\n return results\n}\n","/**\n * @fileoverview CLI utility functions for version handling and path resolution\n */\n\nimport { existsSync } from 'node:fs'\nimport { readFile } from 'node:fs/promises'\nimport path from 'node:path'\nimport { fileURLToPath } from 'node:url'\n\n/**\n * Gets the path to package.json for version resolution\n */\nexport function getPkgJsonPath(): string {\n let startDir: string\n try {\n const __filename = fileURLToPath((import.meta as any).url)\n startDir = path.dirname(__filename)\n } catch {\n startDir = typeof __dirname !== 'undefined' ? __dirname : process.cwd()\n }\n\n return findPackageJson(startDir)\n}\n\nfunction findPackageJson(startDir: string): string {\n let current = startDir\n const maxDepth = 6\n\n for (let i = 0; i < maxDepth; i++) {\n const candidate = path.resolve(current, 'package.json')\n if (existsSync(candidate)) {\n return candidate\n }\n\n const parent = path.dirname(current)\n if (parent === current) break\n current = parent\n }\n\n return path.resolve(process.cwd(), 'package.json')\n}\n\n/**\n * Gets the current tool version from package.json\n */\nexport async function getToolVersion(): Promise<string> {\n try {\n const pkgPath = getPkgJsonPath()\n const raw = await readFile(pkgPath, 'utf8')\n const pkg = JSON.parse(raw)\n return pkg.version || '0.0.0'\n } catch {\n return '0.0.0'\n }\n}\n\n/**\n * ASCII banner for the CLI\n */\nexport const ASCII_BANNER = String.raw`\n ________ __\n / _____/ ____ _____/ |_ ____ ____\n/ \\ ___ / _ \\ / _ \\ __\\/ __ \\ / \\\n\\ \\_\\ ( <_> | <_> ) | \\ ___/| | \\\n \\______ /\\____/ \\____/|__| \\___ >___| /\n \\/ \\/ \\/\n GEX\n`\n","/**\n * @fileoverview Report generation utilities for Bun CLI\n */\n\nimport { readFile } from 'node:fs/promises'\nimport path from 'node:path'\n\nimport { buildReportFromNpmTree } from '../../shared/transform.js'\nimport type { OutputFormat, Report } from '../../shared/types.js'\nimport { getToolVersion } from '../../shared/cli/utils.js'\n\nimport { bunPmLs, bunPmRootGlobal, bunPmRootLocal } from './package-manager.js'\n\n/**\n * Options for Bun report generation\n */\nexport interface ReportOptions {\n outputFormat: OutputFormat\n outFile?: string\n fullTree?: boolean\n omitDev?: boolean\n cwd?: string\n}\n\n/**\n * Result of report generation including markdown extras\n */\nexport interface ReportResult {\n report: Report\n markdownExtras?: {\n project_description?: string\n project_homepage?: string\n project_bugs?: string\n }\n}\n\n/**\n * Produces a dependency report for local or global context using Bun package manager\n *\n * @param ctx - Context for report generation ('local' or 'global')\n * @param options - Report generation options\n * @returns Report and optional markdown extras\n */\nexport async function produceReport(\n ctx: 'local' | 'global',\n options: ReportOptions,\n): Promise<ReportResult> {\n const toolVersion = await getToolVersion()\n const cwd = options.cwd || process.cwd()\n\n const tree = await bunPmLs({\n global: ctx === 'global',\n omitDev: ctx === 'local' ? Boolean(options.omitDev) : false,\n cwd,\n })\n const nodeModulesPath = tree?.node_modules_path\n\n let project_description: string | undefined\n let project_homepage: string | undefined\n let project_bugs: string | undefined\n\n if (ctx === 'local') {\n try {\n const pkgRaw = await readFile(path.join(cwd, 'package.json'), 'utf8')\n const pkg = JSON.parse(pkgRaw)\n project_description = pkg.description\n project_homepage = pkg.homepage\n if (typeof pkg.bugs === 'string') project_bugs = pkg.bugs\n else if (pkg.bugs && typeof pkg.bugs.url === 'string') project_bugs = pkg.bugs.url\n } catch {\n // Ignore errors reading local package.json (e.g., file missing or invalid JSON)\n void 0\n }\n }\n\n const resolvedRoot = nodeModulesPath\n ? nodeModulesPath\n : ctx === 'global'\n ? await bunPmRootGlobal().catch(() => undefined)\n : await bunPmRootLocal(cwd).catch(() => `${cwd}/node_modules`)\n\n const report = await buildReportFromNpmTree(tree, {\n context: ctx,\n includeTree: Boolean(options.fullTree),\n omitDev: Boolean(options.omitDev),\n cwd,\n toolVersion,\n globalRoot: resolvedRoot,\n })\n\n const markdownExtras = { project_description, project_homepage, project_bugs }\n return { report, markdownExtras }\n}\n","/**\n * @fileoverview Data transformation utilities for converting npm tree data into reports\n */\n\nimport path from 'node:path'\nimport { readFile } from 'node:fs/promises'\n\nimport type { PackageInfo, Report } from './types.js'\n\n/**\n * Options for report generation and normalization\n */\nexport type NormalizeOptions = {\n /** Context for report generation ('local' or 'global') */\n context: 'local' | 'global'\n /** Whether to include the full npm dependency tree */\n includeTree?: boolean\n /** Whether to omit devDependencies (local context only) */\n omitDev?: boolean\n /** Current working directory */\n cwd?: string\n /** Tool version to include in report */\n toolVersion: string\n /** Global npm root directory path */\n globalRoot?: string\n}\n\n/**\n * Converts npm dependency object to array of package entries\n *\n * @param obj - npm dependency object from npm ls output\n * @returns Array of name/node pairs for packages\n */\nfunction toPkgArray(obj: Record<string, any> | undefined | null): { name: string; node: any }[] {\n if (!obj) return []\n return Object.keys(obj)\n .map((name) => ({ name, node: obj[name] }))\n .filter((p) => p && p.node)\n}\n\n/**\n * Builds a GEX report from npm ls tree output\n *\n * @param tree - Raw npm ls command output\n * @param opts - Report generation options\n * @returns Promise resolving to a formatted Report object\n *\n * @example\n * ```typescript\n * import { buildReportFromNpmTree } from './transform.js'\n * import { npmLs } from './npm.js'\n *\n * const tree = await npmLs({ depth0: true })\n * const report = await buildReportFromNpmTree(tree, {\n * context: 'local',\n * toolVersion: '0.3.2',\n * cwd: process.cwd()\n * })\n *\n * console.log(`Found ${report.local_dependencies.length} dependencies`)\n * ```\n */\nexport async function buildReportFromNpmTree(tree: any, opts: NormalizeOptions): Promise<Report> {\n const timestamp = new Date().toISOString()\n const report: Report = {\n report_version: '1.0',\n timestamp,\n tool_version: opts.toolVersion,\n global_packages: [],\n local_dependencies: [],\n local_dev_dependencies: [],\n }\n\n if (opts.context === 'local') {\n let pkgMeta: any = null\n try {\n const pkgJsonPath = path.join(opts.cwd || process.cwd(), 'package.json')\n const raw = await readFile(pkgJsonPath, 'utf8')\n pkgMeta = JSON.parse(raw)\n } catch {\n // Ignore errors reading/parsing package.json; fall back to undefined metadata\n void 0\n }\n if (pkgMeta?.name) report.project_name = pkgMeta.name\n if (pkgMeta?.version) report.project_version = pkgMeta.version\n\n const depsObj = tree?.dependencies as Record<string, any> | undefined\n const devDepsObj = tree?.devDependencies as Record<string, any> | undefined\n const prodItems = toPkgArray(depsObj)\n const treeDevItems = toPkgArray(devDepsObj)\n\n if (treeDevItems.length > 0) {\n for (const { name, node } of treeDevItems) {\n const version = (node && node.version) || ''\n const resolvedPath =\n (node && node.path) || path.join(opts.cwd || process.cwd(), 'node_modules', name)\n report.local_dev_dependencies.push({ name, version, resolved_path: resolvedPath })\n }\n }\n\n const devKeys =\n treeDevItems.length > 0\n ? new Set(treeDevItems.map((entry) => entry.name))\n : new Set(Object.keys((pkgMeta?.devDependencies as Record<string, string>) || {}))\n\n for (const { name, node } of prodItems) {\n const version = (node && node.version) || ''\n const resolvedPath =\n (node && node.path) || path.join(opts.cwd || process.cwd(), 'node_modules', name)\n const pkg: PackageInfo = { name, version, resolved_path: resolvedPath }\n if (!treeDevItems.length && devKeys.has(name)) {\n report.local_dev_dependencies.push(pkg)\n } else {\n report.local_dependencies.push(pkg)\n }\n }\n\n report.local_dependencies.sort((a, b) => a.name.localeCompare(b.name))\n report.local_dev_dependencies.sort((a, b) => a.name.localeCompare(b.name))\n } else if (opts.context === 'global') {\n const depsObj = tree?.dependencies as Record<string, any> | undefined\n const items = toPkgArray(depsObj)\n\n for (const { name, node } of items) {\n const version = (node && node.version) || ''\n const resolvedPath = (node && node.path) || path.join(opts.globalRoot || '', name)\n const pkg: PackageInfo = { name, version, resolved_path: resolvedPath }\n report.global_packages.push(pkg)\n }\n\n report.global_packages.sort((a, b) => a.name.localeCompare(b.name))\n }\n\n if (opts.includeTree) {\n report.tree = tree\n }\n\n return report\n}\n","import path from 'node:path'\nimport { constants as fsConstants, type Dirent } from 'node:fs'\nimport { access, readFile, readdir, stat } from 'node:fs/promises'\nimport { promisify } from 'node:util'\n\nexport type BunPmLsOptions = {\n global?: boolean\n omitDev?: boolean\n depth0?: boolean\n cwd?: string\n}\n\ntype PackageNode = {\n version: string\n path: string\n}\n\ntype BunPackageTree = {\n dependencies: Record<string, PackageNode>\n devDependencies?: Record<string, PackageNode>\n node_modules_path?: string\n}\n\nconst IGNORED_ENTRIES = new Set(['.bin'])\n\n/**\n * Executes a Bun package listing by inspecting node_modules directories directly.\n */\nexport async function bunPmLs(options: BunPmLsOptions = {}): Promise<BunPackageTree> {\n if (options.global) {\n const root = await bunPmRootGlobal()\n const manifest = await readJson(path.join(path.dirname(root), 'package.json'))\n const selections = buildSelections(manifest, { includeDev: false })\n const dependencies =\n selections.prod.size > 0\n ? await collectPackagesForNames(root, mapSelections(selections.prod))\n : await collectPackagesFromNodeModules(root)\n return { dependencies, node_modules_path: root }\n }\n\n const cwd = options.cwd || process.cwd()\n const nodeModulesPath = await bunPmRootLocal(cwd)\n const manifest = await readJson(path.join(cwd, 'package.json'))\n const includeDev = !options.omitDev\n const selections = buildSelections(manifest, { includeDev })\n\n const dependencies =\n selections.prod.size > 0\n ? await collectPackagesForNames(nodeModulesPath, mapSelections(selections.prod))\n : await collectPackagesFromNodeModules(nodeModulesPath)\n\n let devDependencies: Record<string, PackageNode> | undefined\n if (includeDev) {\n if (selections.dev.size > 0) {\n devDependencies = await collectPackagesForNames(\n nodeModulesPath,\n mapSelections(selections.dev),\n )\n } else {\n devDependencies = {}\n }\n }\n\n return { dependencies, devDependencies, node_modules_path: nodeModulesPath }\n}\n\n/**\n * Attempts to resolve the Bun global node_modules directory.\n */\nexport async function bunPmRootGlobal(): Promise<string> {\n if (process.env.GEX_BUN_GLOBAL_ROOT) {\n return process.env.GEX_BUN_GLOBAL_ROOT\n }\n\n const candidates = getGlobalRootCandidates()\n for (const candidate of candidates) {\n if (candidate && (await pathExists(candidate))) {\n return candidate\n }\n }\n\n return (\n candidates.find((c) => Boolean(c)) ||\n path.join(process.env.HOME || process.cwd(), '.bun', 'install', 'global', 'node_modules')\n )\n}\n\n/**\n * Resolves the Bun local node_modules directory for the provided cwd.\n */\nexport async function bunPmRootLocal(cwd: string = process.cwd()): Promise<string> {\n if (process.env.GEX_BUN_LOCAL_ROOT) {\n return process.env.GEX_BUN_LOCAL_ROOT\n }\n return path.join(cwd, 'node_modules')\n}\n\nexport type BunUpdateOptions = {\n cwd: string\n global?: boolean\n packages?: string[]\n}\n\nexport async function bunUpdate(options: BunUpdateOptions): Promise<void> {\n const execFileAsync = await getExecFileAsync()\n const packages = options.packages && options.packages.length > 0 ? options.packages : []\n\n if (options.global) {\n const targets = packages.length > 0 ? packages : []\n const list = targets.length > 0 ? targets : []\n const cmdPackages = list.map((name) => `${name}@latest`)\n try {\n await execFileAsync('bun', ['add', '-g', ...cmdPackages], {\n cwd: options.cwd,\n maxBuffer: 10 * 1024 * 1024,\n })\n } catch (error: any) {\n const stderr = typeof error?.stderr === 'string' ? error.stderr.trim() : ''\n throw new Error(`bun add -g failed: ${stderr || error?.message || 'unknown error'}`)\n }\n return\n }\n\n const args = ['update']\n if (packages.length > 0) args.push(...packages)\n\n try {\n await execFileAsync('bun', args, {\n cwd: options.cwd,\n maxBuffer: 10 * 1024 * 1024,\n })\n } catch (error: any) {\n const stderr = typeof error?.stderr === 'string' ? error.stderr.trim() : ''\n throw new Error(`bun update failed: ${stderr || error?.message || 'unknown error'}`)\n }\n}\n\nasync function collectPackagesForNames(\n nodeModulesPath: string,\n packages: { name: string; declared?: string }[],\n): Promise<Record<string, PackageNode>> {\n const result: Record<string, PackageNode> = {}\n await Promise.all(\n packages.map(async ({ name, declared }) => {\n const pkgDir = packageDir(nodeModulesPath, name)\n const manifest = await readJson(path.join(pkgDir, 'package.json'))\n const pkgName = typeof manifest?.name === 'string' ? manifest.name : name\n const version = typeof manifest?.version === 'string' ? manifest.version : declared || ''\n result[pkgName] = { version, path: pkgDir }\n }),\n )\n return result\n}\n\nasync function collectPackagesFromNodeModules(root: string): Promise<Record<string, PackageNode>> {\n const result: Record<string, PackageNode> = {}\n const entries = await safeReadDir(root)\n\n for (const entry of entries) {\n if (!entry || !entry.name || entry.name.startsWith('.') || IGNORED_ENTRIES.has(entry.name)) {\n continue\n }\n\n const entryPath = path.join(root, entry.name)\n if (!(await isDir(entry, entryPath))) continue\n\n if (entry.name.startsWith('@')) {\n const scopedEntries = await safeReadDir(entryPath)\n for (const scopedEntry of scopedEntries) {\n if (!scopedEntry || !scopedEntry.name || scopedEntry.name.startsWith('.')) continue\n const scopedPath = path.join(entryPath, scopedEntry.name)\n if (!(await isDir(scopedEntry, scopedPath))) continue\n const manifest = await readJson(path.join(scopedPath, 'package.json'))\n const pkgName =\n typeof manifest?.name === 'string' ? manifest.name : `${entry.name}/${scopedEntry.name}`\n const version = typeof manifest?.version === 'string' ? manifest.version : ''\n result[pkgName] = { version, path: scopedPath }\n }\n } else {\n const manifest = await readJson(path.join(entryPath, 'package.json'))\n const pkgName = typeof manifest?.name === 'string' ? manifest.name : entry.name\n const version = typeof manifest?.version === 'string' ? manifest.version : ''\n result[pkgName] = { version, path: entryPath }\n }\n }\n\n return result\n}\n\nasync function readJson(file: string): Promise<any | null> {\n try {\n const raw = await readFile(file, 'utf8')\n return JSON.parse(raw)\n } catch {\n return null\n }\n}\n\nfunction packageDir(root: string, packageName: string): string {\n const segments = packageName.startsWith('@') ? packageName.split('/') : [packageName]\n return path.join(root, ...segments)\n}\n\nfunction buildSelections(\n manifest: Record<string, any> | null,\n { includeDev }: { includeDev: boolean },\n): { prod: Map<string, string | undefined>; dev: Map<string, string | undefined> } {\n const prod = new Map<string, string | undefined>()\n const dev = new Map<string, string | undefined>()\n\n const addAll = (\n target: Map<string, string | undefined>,\n record: Record<string, string> | undefined,\n ) => {\n if (!record) return\n for (const [name, range] of Object.entries(record)) {\n if (!target.has(name)) {\n target.set(name, range)\n }\n }\n }\n\n addAll(prod, manifest?.dependencies)\n addAll(prod, manifest?.optionalDependencies)\n if (includeDev) addAll(dev, manifest?.devDependencies)\n\n return { prod, dev }\n}\n\nfunction mapSelections(\n map: Map<string, string | undefined>,\n): { name: string; declared?: string }[] {\n return Array.from(map.entries()).map(([name, declared]) => ({ name, declared }))\n}\n\nasync function safeReadDir(dir: string): Promise<Dirent[]> {\n try {\n return await readdir(dir, { withFileTypes: true })\n } catch {\n return []\n }\n}\n\nasync function isDir(entry: Dirent, fullPath: string): Promise<boolean> {\n if (entry.isDirectory()) return true\n if (entry.isSymbolicLink()) {\n try {\n const stats = await stat(fullPath)\n return stats.isDirectory()\n } catch {\n return false\n }\n }\n return false\n}\n\nasync function pathExists(target: string): Promise<boolean> {\n try {\n await access(target, fsConstants.R_OK)\n return true\n } catch {\n return false\n }\n}\n\nfunction getGlobalRootCandidates(): string[] {\n const candidates = new Set<string>()\n const bunInstall =\n process.env.BUN_INSTALL || (process.env.HOME ? path.join(process.env.HOME, '.bun') : undefined)\n const maybeAdd = (value: string | undefined) => {\n if (value) candidates.add(value)\n }\n\n if (bunInstall) {\n maybeAdd(path.join(bunInstall, 'install', 'global', 'node_modules'))\n maybeAdd(path.join(bunInstall, 'global', 'node_modules'))\n }\n if (process.env.XDG_DATA_HOME) {\n maybeAdd(path.join(process.env.XDG_DATA_HOME, 'bun', 'install', 'global', 'node_modules'))\n }\n maybeAdd('/usr/local/share/bun/global/node_modules')\n maybeAdd('/opt/homebrew/var/bun/install/global/node_modules')\n\n return Array.from(candidates)\n}\n\nasync function getExecFileAsync(): Promise<(\n command: string,\n args?: readonly string[] | null,\n options?: any,\n) => Promise<{ stdout: string; stderr: string }>> {\n const { execFile } = await import('node:child_process')\n return promisify(execFile) as any\n}\n","/**\n * @fileoverview Bun CLI runner for GEX dependency auditing tool\n *\n * This module only exports the `run` function and does not auto-execute\n * itself. Binary entrypoints (e.g. `cli-bun`) are responsible for invoking\n * `run()` when appropriate so this file can be safely imported by other\n * entrypoints without triggering side effects.\n */\n\nimport { createProgram } from './commands.js'\n\n/**\n * Main CLI runner function for Bun runtime\n *\n * @param argv - Command line arguments (defaults to process.argv)\n */\nexport async function run(argv = process.argv): Promise<void> {\n const program = await createProgram()\n await program.parseAsync(argv)\n}\n","/**\n * @fileoverview Bun CLI entrypoint for the `gex-bun` binary.\n *\n * This thin wrapper invokes the shared Bun runtime `run` function when the\n * generated bundle is executed as the main module.\n */\n\nimport { run } from './cli.js'\n\nconst isMainModule = (() => {\n try {\n if (typeof require !== 'undefined' && typeof module !== 'undefined') {\n return (require as any).main === module\n }\n\n if (typeof import.meta !== 'undefined') {\n return import.meta.url === `file://${process.argv[1]}`\n }\n return false\n } catch {\n return false\n }\n})()\n\nif (isMainModule) {\n run().catch((error) => {\n console.error('Bun CLI error:', error)\n process.exitCode = 1\n })\n}\n"],"mappings":"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","names":["path","readFile","promisify","path","getExecFileAsync","getExecFileAsync","readFile","path","readFile","path","path","readFile","path","readFile","promisify","manifest","selections","dependencies","getExecFileAsync","readFile","path","path","readFile"]}
1
+ {"version":3,"sources":["../src/runtimes/bun/commands.ts","../src/shared/cli/install.ts","../src/shared/cli/output.ts","../src/shared/report/json.ts","../src/shared/report/md.ts","../src/shared/cli/parser.ts","../src/shared/npm-cli.ts","../src/shared/cli/loader.ts","../src/shared/cli/outdated.ts","../src/shared/cli/utils.ts","../src/runtimes/bun/report.ts","../src/shared/transform.ts","../src/runtimes/bun/package-manager.ts","../src/runtimes/bun/cli.ts","../src/runtimes/bun/cli.entry.ts"],"sourcesContent":["/**\n * @fileoverview CLI command definitions and handlers for Bun runtime\n */\n\nimport path from 'node:path'\nimport { readFile } from 'node:fs/promises'\n\nimport { Command } from 'commander'\n\nimport type { OutputFormat } from '../../shared/types.js'\nimport { installFromReport, printFromReport } from '../../shared/cli/install.js'\nimport { outputReport } from '../../shared/cli/output.js'\nimport { isMarkdownReportFile, loadReportFromFile } from '../../shared/cli/parser.js'\nimport {\n normalizeUpdateSelection,\n handleOutdatedWorkflow,\n resolveOutdatedWithNpmView,\n formatOutdatedTable,\n} from '../../shared/cli/outdated.js'\nimport { ASCII_BANNER, getToolVersion } from '../../shared/cli/utils.js'\n\nimport { produceReport } from './report.js'\nimport { bunUpdate, bunPmLs } from './package-manager.js'\n\n/**\n * Adds common options to a command\n *\n * @param cmd - Command to add options to\n * @param options - Configuration for which options to add\n * @returns Modified command\n */\nfunction addCommonOptions(cmd: Command, { allowOmitDev }: { allowOmitDev: boolean }): Command {\n cmd\n .option(\n '-f, --output-format <format>',\n 'Output format: md or json',\n (val) => (val === 'md' ? 'md' : 'json'),\n 'json',\n )\n .option('-o, --out-file <path>', 'Write report to file')\n .option('--full-tree', 'Include full bun pm ls tree (when available)', false)\n .option('-c, --check-outdated', 'List outdated packages instead of printing the report', false)\n .option(\n '-u, --update-outdated [packages...]',\n 'Update outdated packages (omit package names to update every package)',\n )\n\n if (allowOmitDev) {\n cmd.option('--omit-dev', 'Exclude devDependencies (local only)', false)\n }\n\n return cmd\n}\n\n/**\n * Creates the local command handler\n *\n * @param program - Commander program instance\n * @returns Command instance\n */\nexport function createLocalCommand(program: Command): Command {\n const localCmd = program\n .command('local', { isDefault: true })\n .description(\"Generate a report for the current Bun project's dependencies\")\n\n addCommonOptions(localCmd, { allowOmitDev: true })\n\n localCmd.action(async (opts) => {\n const outputFormat = (opts.outputFormat ?? 'json') as OutputFormat\n const outFile = opts.outFile as string | undefined\n const fullTree = Boolean(opts.fullTree)\n const omitDev = Boolean(opts.omitDev)\n const cwd = process.cwd()\n\n const selection = normalizeUpdateSelection(opts.updateOutdated)\n const result = await handleOutdatedWorkflow({\n checkOutdated: Boolean(opts.checkOutdated),\n selection,\n contextLabel: 'local',\n outFile,\n fetchOutdated: async () => {\n const tree = await bunPmLs({ cwd, omitDev })\n const manifest = await readPackageManifest(cwd)\n const declared = {\n ...(manifest?.dependencies || {}),\n ...(manifest?.optionalDependencies || {}),\n ...(manifest?.devDependencies || {}),\n }\n\n const packages = Object.entries(tree.dependencies).map(([name, node]) => ({\n name,\n current: node.version,\n declared: declared[name],\n type: 'prod',\n }))\n\n if (tree.devDependencies) {\n for (const [name, node] of Object.entries(tree.devDependencies)) {\n packages.push({\n name,\n current: node.version,\n declared: declared[name],\n type: 'dev',\n })\n }\n }\n\n return resolveOutdatedWithNpmView(packages)\n },\n updateRunner: selection.shouldUpdate\n ? async (packages) => {\n await bunUpdate({ cwd, packages })\n }\n : undefined,\n })\n if (opts.checkOutdated) {\n if (result.outdated.length === 0) console.log('All local packages are up to date.')\n else console.log(formatOutdatedTable(result.outdated))\n }\n if (!result.proceed) return\n\n // Only set finalOutFile when explicitly provided via --out-file\n const finalOutFile = outFile\n\n const { report, markdownExtras } = await produceReport('local', {\n outputFormat,\n outFile: finalOutFile,\n fullTree,\n omitDev,\n })\n\n await outputReport(report, outputFormat, finalOutFile, markdownExtras)\n })\n\n return localCmd\n}\n\n/**\n * Creates the global command handler\n *\n * @param program - Commander program instance\n * @returns Command instance\n */\nexport function createGlobalCommand(program: Command): Command {\n const globalCmd = program\n .command('global')\n .description('Generate a report of globally installed Bun packages')\n\n addCommonOptions(globalCmd, { allowOmitDev: false })\n\n globalCmd.action(async (opts) => {\n const outputFormat = (opts.outputFormat ?? 'json') as OutputFormat\n const outFile = opts.outFile as string | undefined\n const fullTree = Boolean(opts.fullTree)\n const cwd = process.cwd()\n\n const selection = normalizeUpdateSelection(opts.updateOutdated)\n const result = await handleOutdatedWorkflow({\n checkOutdated: Boolean(opts.checkOutdated),\n selection,\n contextLabel: 'global',\n outFile,\n fetchOutdated: async () => {\n const tree = await bunPmLs({ global: true })\n const packages = Object.entries(tree.dependencies).map(([name, node]) => ({\n name,\n current: node.version,\n type: 'global',\n }))\n return resolveOutdatedWithNpmView(packages)\n },\n updateRunner: selection.shouldUpdate\n ? async (packages) => {\n await bunUpdate({ cwd, global: true, packages })\n }\n : undefined,\n })\n if (opts.checkOutdated) {\n if (result.outdated.length === 0) console.log('All global packages are up to date.')\n else console.log(formatOutdatedTable(result.outdated))\n }\n if (!result.proceed) return\n\n // Only set finalOutFile when explicitly provided via --out-file\n const finalOutFile = outFile\n\n const { report, markdownExtras } = await produceReport('global', {\n outputFormat,\n outFile: finalOutFile,\n fullTree,\n })\n\n await outputReport(report, outputFormat, finalOutFile, markdownExtras)\n })\n\n return globalCmd\n}\n\n/**\n * Creates the read command handler\n *\n * @param program - Commander program instance\n * @returns Command instance\n */\nexport function createReadCommand(program: Command): Command {\n const readCmd = program\n .command('read')\n .description(\n 'Read a previously generated report (JSON or Markdown) and either print package names or install them',\n )\n .argument('[report]', 'Path to report file (JSON or Markdown)', 'bun-report.json')\n .option('-r, --report <path>', 'Path to report file (JSON or Markdown)')\n .option('-p, --print', 'Print package names/versions from the report (default)', false)\n .option('-i, --install', 'Install packages from the report using Bun', false)\n\n readCmd.action(async (reportArg: string | undefined, opts: any) => {\n const chosen = (opts.report as string | undefined) || reportArg || 'bun-report.json'\n const reportPath = path.resolve(process.cwd(), chosen)\n\n try {\n const parsed = await loadReportFromFile(reportPath)\n\n const doInstall = Boolean(opts.install)\n const doPrint = Boolean(opts.print) || !doInstall\n\n if (doPrint) {\n printFromReport(parsed)\n }\n if (doInstall) {\n await installFromReport(parsed, { cwd: process.cwd(), packageManager: 'bun' })\n }\n } catch (err: any) {\n const isMd = isMarkdownReportFile(reportPath)\n const hint = isMd\n ? 'Try generating a JSON report with: gex-bun global -f json -o global.json, then: gex-bun read global.json'\n : 'Specify a report path with: gex-bun read <path-to-report.json>'\n console.error(`Failed to read report at ${reportPath}: ${err?.message || err}`)\n console.error(hint)\n process.exitCode = 1\n }\n })\n\n return readCmd\n}\n\n/**\n * Creates and configures the main CLI program for Bun runtime\n *\n * @returns Configured Commander program\n */\nexport async function createProgram(): Promise<Command> {\n const program = new Command()\n .name('gex-bun')\n .description('GEX: Dependency auditing and documentation for Bun (local and global).')\n .version(await getToolVersion())\n\n program.addHelpText('beforeAll', `\\n${ASCII_BANNER}`)\n\n createLocalCommand(program)\n createGlobalCommand(program)\n createReadCommand(program)\n\n return program\n}\n\nasync function readPackageManifest(cwd: string): Promise<any | null> {\n try {\n const raw = await readFile(path.join(cwd, 'package.json'), 'utf8')\n return JSON.parse(raw)\n } catch {\n return null\n }\n}\n","/**\n * @fileoverview Package installation utilities for CLI\n */\n\nimport type { Report } from '../types.js'\n\ntype PackageManager = 'npm' | 'bun'\n\nexport type InstallOptions = {\n cwd: string\n packageManager?: PackageManager\n}\n\nconst INSTALL_COMMANDS: Record<\n PackageManager,\n { global: string[]; local: string[]; dev: string[] }\n> = {\n npm: {\n global: ['i', '-g'],\n local: ['i'],\n dev: ['i', '-D'],\n },\n bun: {\n global: ['add', '-g'],\n local: ['add'],\n dev: ['add', '-d'],\n },\n}\n\nconst MAX_BUFFER = 10 * 1024 * 1024\n\nfunction formatSpec(pkg: { name: string; version: string }): string {\n return pkg.version ? `${pkg.name}@${pkg.version}` : pkg.name\n}\n\n/**\n * Lazily obtain a promisified execFile so tests can mock built-ins reliably.\n */\nasync function getExecFileAsync(): Promise<\n (\n command: string,\n args?: readonly string[] | null,\n options?: any,\n ) => Promise<{ stdout: string; stderr: string }>\n> {\n const { execFile } = await import('node:child_process')\n const { promisify } = await import('node:util')\n return promisify(execFile) as any\n}\n\n/**\n * Installs packages from a report to the local environment\n *\n * @param report - The report containing packages to install\n * @param cwd - Current working directory for installation\n * @throws {Error} If npm installation fails\n */\nexport async function installFromReport(\n report: Report,\n options: InstallOptions | string,\n): Promise<void> {\n const opts = typeof options === 'string' ? { cwd: options } : options\n const { cwd, packageManager = 'npm' } = opts\n\n const globalPkgs = report.global_packages.map(formatSpec).filter(Boolean)\n const localPkgs = report.local_dependencies.map(formatSpec).filter(Boolean)\n const devPkgs = report.local_dev_dependencies.map(formatSpec).filter(Boolean)\n\n if (globalPkgs.length === 0 && localPkgs.length === 0 && devPkgs.length === 0) {\n console.log('No packages to install from report.')\n return\n }\n\n // Acquire execFileAsync once per run to keep logs grouped, while still mockable in tests\n const execFileAsync = await getExecFileAsync()\n const cmd = INSTALL_COMMANDS[packageManager]\n const binary = packageManager === 'bun' ? 'bun' : 'npm'\n\n if (globalPkgs.length > 0) {\n console.log(`Installing global: ${globalPkgs.join(' ')}`)\n await execFileAsync(binary, [...cmd.global, ...globalPkgs], { cwd, maxBuffer: MAX_BUFFER })\n }\n\n if (localPkgs.length > 0) {\n console.log(`Installing local deps: ${localPkgs.join(' ')}`)\n await execFileAsync(binary, [...cmd.local, ...localPkgs], { cwd, maxBuffer: MAX_BUFFER })\n }\n\n if (devPkgs.length > 0) {\n console.log(`Installing local devDeps: ${devPkgs.join(' ')}`)\n await execFileAsync(binary, [...cmd.dev, ...devPkgs], { cwd, maxBuffer: MAX_BUFFER })\n }\n}\n\n/**\n * Prints packages from a report to the console\n *\n * @param report - The report to print packages from\n */\nexport function printFromReport(report: Report): void {\n const lines: string[] = []\n\n if (report.global_packages.length > 0) {\n lines.push('Global Packages:')\n for (const p of report.global_packages) {\n lines.push(`- ${p.name}@${p.version}`)\n }\n }\n\n if (report.local_dependencies.length > 0) {\n if (lines.length) lines.push('')\n lines.push('Local Dependencies:')\n for (const p of report.local_dependencies) {\n lines.push(`- ${p.name}@${p.version}`)\n }\n }\n\n if (report.local_dev_dependencies.length > 0) {\n if (lines.length) lines.push('')\n lines.push('Local Dev Dependencies:')\n for (const p of report.local_dev_dependencies) {\n lines.push(`- ${p.name}@${p.version}`)\n }\n }\n\n if (lines.length === 0) {\n lines.push('(no packages found in report)')\n }\n\n console.log(lines.join('\\n'))\n}\n","/**\n * @fileoverview Report output utilities for CLI\n */\n\nimport path from 'node:path'\n\nimport { renderJson } from '../report/json.js'\nimport { renderMarkdown } from '../report/md.js'\nimport type { OutputFormat, Report } from '../types.js'\n\n/**\n * Outputs a report to console or file\n *\n * @param report - The report to output\n * @param format - Output format ('json' or 'md')\n * @param outFile - Optional file path to write to\n * @param markdownExtras - Additional metadata for markdown rendering\n */\nexport async function outputReport(\n report: Report,\n format: OutputFormat,\n outFile?: string,\n markdownExtras?: any,\n): Promise<void> {\n const content =\n format === 'json'\n ? renderJson(report)\n : renderMarkdown({ ...report, ...(markdownExtras || {}) })\n\n if (outFile) {\n const outDir = path.dirname(outFile)\n const { mkdir, writeFile } = await import('node:fs/promises')\n\n await mkdir(outDir, { recursive: true })\n await writeFile(outFile, content, 'utf8')\n\n console.log(`Wrote report to ${outFile}`)\n } else {\n console.log(content)\n }\n}\n","/**\n * @fileoverview JSON report rendering utilities\n */\n\nimport type { Report } from '../types.js'\n\n/**\n * Renders a Report object as formatted JSON string\n *\n * @param report - Report object to render\n * @returns Pretty-printed JSON string with consistent package ordering\n *\n * @example\n * ```typescript\n * import { renderJson } from './report/json.js'\n *\n * const report = {\n * report_version: '1.0',\n * timestamp: new Date().toISOString(),\n * tool_version: '0.3.2',\n * global_packages: [],\n * local_dependencies: [{ name: 'axios', version: '1.6.0', resolved_path: '/path/to/axios' }],\n * local_dev_dependencies: []\n * }\n *\n * const jsonOutput = renderJson(report)\n * console.log(jsonOutput) // Pretty-printed JSON\n * ```\n */\nexport function renderJson(report: Report): string {\n const r: Report = {\n ...report,\n global_packages: [...report.global_packages].sort((a, b) => a.name.localeCompare(b.name)),\n local_dependencies: [...report.local_dependencies].sort((a, b) => a.name.localeCompare(b.name)),\n local_dev_dependencies: [...report.local_dev_dependencies].sort((a, b) =>\n a.name.localeCompare(b.name),\n ),\n }\n return JSON.stringify(r, null, 2)\n}\n","/**\n * @fileoverview Markdown report rendering utilities\n */\n\nimport type { Report } from '../types.js'\n\n/**\n * Creates a markdown table from headers and row data\n *\n * @param headers - Array of table header strings\n * @param rows - Array of row data (each row is array of strings)\n * @returns Formatted markdown table string\n */\nfunction table(headers: string[], rows: string[][]): string {\n const header = `| ${headers.join(' | ')} |`\n const sep = `| ${headers.map(() => '---').join(' | ')} |`\n const body = rows.map((r) => `| ${r.join(' | ')} |`).join('\\n')\n return [header, sep, body].filter(Boolean).join('\\n')\n}\n\n/**\n * Renders a Report object as formatted Markdown\n *\n * @param report - Report object with optional project metadata\n * @returns Formatted Markdown string with tables and sections\n *\n * @example\n * ```typescript\n * import { renderMarkdown } from './report/md.js'\n *\n * const report = {\n * report_version: '1.0',\n * timestamp: new Date().toISOString(),\n * tool_version: '0.3.2',\n * project_name: 'my-project',\n * global_packages: [],\n * local_dependencies: [\n * { name: 'axios', version: '1.6.0', resolved_path: '/path/to/axios' }\n * ],\n * local_dev_dependencies: [],\n * project_description: 'My awesome project'\n * }\n *\n * const markdown = renderMarkdown(report)\n * console.log(markdown) // Formatted markdown with tables\n * ```\n */\nexport function renderMarkdown(\n report: Report & {\n project_description?: string\n project_homepage?: string\n project_bugs?: string\n },\n): string {\n const lines: string[] = []\n lines.push('# GEX Report')\n lines.push('')\n\n if (\n report.project_name ||\n report.project_version ||\n (report as any).project_description ||\n (report as any).project_homepage ||\n (report as any).project_bugs\n ) {\n lines.push('## Project Metadata')\n if (report.project_name) lines.push(`- Name: ${report.project_name}`)\n if (report.project_version) lines.push(`- Version: ${report.project_version}`)\n if ((report as any).project_description)\n lines.push(`- Description: ${(report as any).project_description}`)\n if ((report as any).project_homepage)\n lines.push(`- Homepage: ${(report as any).project_homepage}`)\n if ((report as any).project_bugs) lines.push(`- Bugs: ${(report as any).project_bugs}`)\n lines.push('')\n }\n\n if (report.global_packages.length > 0) {\n lines.push('## Global Packages')\n const rows = report.global_packages.map((p) => [p.name, p.version || '', p.resolved_path || ''])\n lines.push(table(['Name', 'Version', 'Path'], rows))\n lines.push('')\n }\n\n if (report.local_dependencies.length > 0) {\n lines.push('## Local Dependencies')\n const rows = report.local_dependencies.map((p) => [\n p.name,\n p.version || '',\n p.resolved_path || '',\n ])\n lines.push(table(['Name', 'Version', 'Path'], rows))\n lines.push('')\n }\n\n if (report.local_dev_dependencies.length > 0) {\n lines.push('## Local Dev Dependencies')\n const rows = report.local_dev_dependencies.map((p) => [\n p.name,\n p.version || '',\n p.resolved_path || '',\n ])\n lines.push(table(['Name', 'Version', 'Path'], rows))\n lines.push('')\n }\n\n lines.push('---')\n lines.push('_Generated by GEX_')\n\n return lines.join('\\n')\n}\n","/**\n * @fileoverview Report parsing utilities for CLI\n */\n\nimport { readFile } from 'node:fs/promises'\nimport path from 'node:path'\n\nimport type { PackageInfo, Report } from '../types.js'\n\n/**\n * Checks if a file path indicates a markdown report\n */\nexport function isMarkdownReportFile(filePath: string): boolean {\n const ext = path.extname(filePath).toLowerCase()\n return ext === '.md' || ext === '.markdown'\n}\n\n/**\n * Parses a markdown table and extracts package information\n *\n * @param lines - Array of file lines\n * @param startIndex - Index where table starts\n * @returns Array of package information\n */\nfunction parseMarkdownPackagesTable(lines: string[], startIndex: number): PackageInfo[] {\n const rows: PackageInfo[] = []\n if (!lines[startIndex] || !lines[startIndex].trim().startsWith('|')) return rows\n\n let i = startIndex + 2\n while (i < lines.length && lines[i].trim().startsWith('|')) {\n const cols = lines[i]\n .split('|')\n .map((c) => c.trim())\n .filter((_, idx, arr) => !(idx === 0 || idx === arr.length - 1))\n\n const [name = '', version = '', resolved_path = ''] = cols\n if (name) rows.push({ name, version, resolved_path })\n i++\n }\n return rows\n}\n\n/**\n * Parses a markdown report and converts it to a Report object\n *\n * @param md - Markdown content to parse\n * @returns Parsed Report object\n */\nexport function parseMarkdownReport(md: string): Report {\n const lines = md.split(/\\r?\\n/)\n\n const findSection = (title: string) =>\n lines.findIndex((l) => l.trim().toLowerCase() === `## ${title}`.toLowerCase())\n\n const parseSection = (idx: number): PackageInfo[] => {\n if (idx < 0) return []\n\n let i = idx + 1\n while (i < lines.length && !lines[i].trim().startsWith('|')) i++\n return parseMarkdownPackagesTable(lines, i)\n }\n\n const global_packages = parseSection(findSection('Global Packages'))\n const local_dependencies = parseSection(findSection('Local Dependencies'))\n const local_dev_dependencies = parseSection(findSection('Local Dev Dependencies'))\n\n const report: Report = {\n report_version: '1.0',\n timestamp: new Date().toISOString(),\n tool_version: 'unknown',\n global_packages,\n local_dependencies,\n local_dev_dependencies,\n }\n return report\n}\n\n/**\n * Loads and parses a report file (JSON or Markdown)\n *\n * @param reportPath - Path to the report file\n * @returns Parsed Report object\n * @throws {Error} If file cannot be read or parsed\n */\nexport async function loadReportFromFile(reportPath: string): Promise<Report> {\n const raw = await readFile(reportPath, 'utf8')\n\n if (isMarkdownReportFile(reportPath) || raw.startsWith('# GEX Report')) {\n return parseMarkdownReport(raw)\n }\n\n return JSON.parse(raw) as Report\n}\n","import { promisify } from 'node:util'\n\nexport type OutdatedInfo = {\n name: string\n current: string\n wanted: string\n latest: string\n type?: string\n}\n\nexport type NpmOutdatedOptions = {\n global?: boolean\n cwd?: string\n}\n\nexport type NpmUpdateOptions = {\n global?: boolean\n cwd: string\n packages?: string[]\n}\n\nasync function getExecFileAsync(): Promise<(\n command: string,\n args?: readonly string[] | null,\n options?: any,\n) => Promise<{ stdout: string; stderr: string }>> {\n const { execFile } = await import('node:child_process')\n return promisify(execFile) as any\n}\n\nexport async function npmOutdated(options: NpmOutdatedOptions = {}): Promise<OutdatedInfo[]> {\n const args = ['outdated', '--json']\n if (options.global) args.push('--global')\n\n try {\n const execFileAsync = await getExecFileAsync()\n const { stdout } = await execFileAsync('npm', args, {\n cwd: options.cwd,\n maxBuffer: 10 * 1024 * 1024,\n })\n return normalizeOutdated(stdout)\n } catch (error: any) {\n const stdout = typeof error?.stdout === 'string' ? error.stdout : ''\n if (stdout.trim()) {\n return normalizeOutdated(stdout)\n }\n throw formatNpmError(error, 'npm outdated')\n }\n}\n\nexport async function npmUpdate(options: NpmUpdateOptions): Promise<void> {\n const args = ['update']\n if (options.global) args.push('-g')\n if (options.packages && options.packages.length > 0) args.push(...options.packages)\n\n try {\n const execFileAsync = await getExecFileAsync()\n await execFileAsync('npm', args, {\n cwd: options.cwd,\n maxBuffer: 10 * 1024 * 1024,\n })\n } catch (error) {\n throw formatNpmError(error, 'npm update')\n }\n}\n\nfunction normalizeOutdated(stdout: string): OutdatedInfo[] {\n if (!stdout.trim()) return []\n let data: Record<string, any>\n try {\n data = JSON.parse(stdout)\n } catch {\n return []\n }\n\n if (!data) return []\n return Object.entries(data).map(([name, info]) => ({\n name,\n current: info?.current ? String(info.current) : '',\n wanted: info?.wanted ? String(info.wanted) : '',\n latest: info?.latest ? String(info.latest) : '',\n type: info?.type ? String(info.type) : undefined,\n }))\n}\n\nfunction formatNpmError(error: any, commandLabel: string): Error {\n const stderr = typeof error?.stderr === 'string' ? error.stderr.trim() : ''\n const message = stderr || error?.message || `${commandLabel} failed`\n return new Error(`${commandLabel} failed: ${message}`)\n}\n\nexport async function npmViewVersion(packageName: string): Promise<string> {\n try {\n const execFileAsync = await getExecFileAsync()\n const { stdout } = await execFileAsync('npm', ['view', packageName, 'version', '--json'], {\n maxBuffer: 5 * 1024 * 1024,\n })\n const parsed = JSON.parse(stdout)\n if (typeof parsed === 'string') return parsed\n if (Array.isArray(parsed)) return parsed[parsed.length - 1] ?? ''\n return ''\n } catch (error) {\n throw formatNpmError(error, `npm view ${packageName}`)\n }\n}\n","const frames = ['-', '\\\\', '|', '/'] as const\n\nexport type Loader = {\n stop: (finalMessage?: string) => void\n}\n\nexport function createLoader(message: string): Loader {\n if (!process.stdout.isTTY) {\n console.log(`${message}...`)\n return {\n stop(finalMessage) {\n if (finalMessage) console.log(finalMessage)\n },\n }\n }\n\n let index = 0\n const interval = globalThis.setInterval(() => {\n const frame = frames[index % frames.length]\n index += 1\n process.stdout.write(`\\r${message} ${frame}`)\n }, 80)\n\n return {\n stop(finalMessage) {\n globalThis.clearInterval(interval)\n process.stdout.write('\\r')\n if (finalMessage) {\n console.log(finalMessage)\n } else {\n process.stdout.write('\\x1b[2K')\n }\n },\n }\n}\n","import type { OutdatedInfo } from '../npm-cli.js'\nimport { npmViewVersion } from '../npm-cli.js'\n\nimport { createLoader } from './loader.js'\n\nexport type OutdatedEntry = OutdatedInfo\n\nexport type OutdatedSelection = {\n shouldUpdate: boolean\n updateAll: boolean\n packages: string[]\n}\n\nexport function normalizeUpdateSelection(value: unknown): OutdatedSelection {\n if (value === undefined) {\n return { shouldUpdate: false, updateAll: false, packages: [] }\n }\n if (value === true) {\n return { shouldUpdate: true, updateAll: true, packages: [] }\n }\n const packages = Array.isArray(value) ? value : typeof value === 'string' ? [value] : []\n const normalized = packages\n .flatMap((entry) =>\n String(entry)\n .split(',')\n .map((part) => part.trim()),\n )\n .filter(Boolean)\n\n return {\n shouldUpdate: true,\n updateAll: false,\n packages: normalized,\n }\n}\n\nexport function formatOutdatedTable(entries: OutdatedEntry[]): string {\n const headers = ['Name', 'Current', 'Wanted', 'Latest', 'Type']\n const rows = entries.map((entry) => [\n entry.name,\n entry.current || '-',\n entry.wanted || '-',\n entry.latest || '-',\n entry.type || '-',\n ])\n\n const widths = headers.map((header, index) =>\n Math.max(header.length, ...rows.map((row) => row[index].length)),\n )\n\n const formatRow = (columns: string[]) =>\n columns.map((col, idx) => col.padEnd(widths[idx], ' ')).join(' ')\n\n const lines = [formatRow(headers), formatRow(widths.map((w) => '-'.repeat(w)))]\n for (const row of rows) {\n lines.push(formatRow(row))\n }\n return lines.join('\\n')\n}\n\nexport type OutdatedWorkflowOptions = {\n checkOutdated: boolean\n selection: OutdatedSelection\n contextLabel: 'local' | 'global'\n outFile?: string\n fetchOutdated: () => Promise<OutdatedEntry[]>\n updateRunner?: (packages: string[]) => Promise<void>\n}\n\nexport type OutdatedWorkflowResult = {\n proceed: boolean\n outdated: OutdatedEntry[]\n}\n\nexport async function handleOutdatedWorkflow(\n opts: OutdatedWorkflowOptions,\n): Promise<OutdatedWorkflowResult> {\n if (!opts.checkOutdated && !opts.selection.shouldUpdate) {\n return { proceed: true, outdated: [] }\n }\n\n let fetchLoader: ReturnType<typeof createLoader> | undefined\n if (opts.checkOutdated || opts.selection.shouldUpdate) {\n fetchLoader = createLoader('Checking for outdated packages')\n }\n const outdated = await opts.fetchOutdated()\n fetchLoader?.stop('Finished checking outdated packages.')\n\n if (opts.selection.shouldUpdate && opts.updateRunner) {\n const packagesToUpdate = opts.selection.updateAll\n ? outdated.map((entry) => entry.name)\n : opts.selection.packages\n\n if (!packagesToUpdate || packagesToUpdate.length === 0) {\n if (opts.selection.updateAll) {\n console.log('No outdated packages to update.')\n } else {\n console.log('No packages were specified for updating.')\n }\n } else {\n const updateLoader = createLoader('Updating packages')\n await opts.updateRunner(packagesToUpdate)\n updateLoader.stop('Finished updating packages.')\n }\n }\n\n const proceed = !((opts.checkOutdated || opts.selection.shouldUpdate) && !opts.outFile)\n return { proceed, outdated }\n}\n\nexport type InstalledPackageInput = {\n name: string\n current: string\n declared?: string\n type?: string\n}\n\nexport async function resolveOutdatedWithNpmView(\n packages: InstalledPackageInput[],\n): Promise<OutdatedEntry[]> {\n const results: OutdatedEntry[] = []\n for (const pkg of packages) {\n try {\n const latest = await npmViewVersion(pkg.name)\n if (latest && pkg.current && latest !== pkg.current) {\n results.push({\n name: pkg.name,\n current: pkg.current,\n wanted: pkg.declared || latest,\n latest,\n type: pkg.type,\n })\n }\n } catch {\n continue\n }\n }\n return results\n}\n","/**\n * @fileoverview CLI utility functions for version handling and path resolution\n */\n\nimport { existsSync } from 'node:fs'\nimport { readFile } from 'node:fs/promises'\nimport path from 'node:path'\nimport { fileURLToPath } from 'node:url'\n\n/**\n * Gets the path to package.json for version resolution\n */\nexport function getPkgJsonPath(): string {\n let startDir: string\n try {\n const __filename = fileURLToPath((import.meta as any).url)\n startDir = path.dirname(__filename)\n } catch {\n startDir = typeof __dirname !== 'undefined' ? __dirname : process.cwd()\n }\n\n return findPackageJson(startDir)\n}\n\nfunction findPackageJson(startDir: string): string {\n let current = startDir\n const maxDepth = 6\n\n for (let i = 0; i < maxDepth; i++) {\n const candidate = path.resolve(current, 'package.json')\n if (existsSync(candidate)) {\n return candidate\n }\n\n const parent = path.dirname(current)\n if (parent === current) break\n current = parent\n }\n\n return path.resolve(process.cwd(), 'package.json')\n}\n\n/**\n * Gets the current tool version from package.json\n */\nexport async function getToolVersion(): Promise<string> {\n try {\n const pkgPath = getPkgJsonPath()\n const raw = await readFile(pkgPath, 'utf8')\n const pkg = JSON.parse(raw)\n return pkg.version || '0.0.0'\n } catch {\n return '0.0.0'\n }\n}\n\n/**\n * ASCII banner for the CLI\n */\nexport const ASCII_BANNER = String.raw`\n ________ __\n / _____/ ____ _____/ |_ ____ ____\n/ \\ ___ / _ \\ / _ \\ __\\/ __ \\ / \\\n\\ \\_\\ ( <_> | <_> ) | \\ ___/| | \\\n \\______ /\\____/ \\____/|__| \\___ >___| /\n \\/ \\/ \\/\n GEX\n`\n","/**\n * @fileoverview Report generation utilities for Bun CLI\n */\n\nimport { readFile } from 'node:fs/promises'\nimport path from 'node:path'\n\nimport { buildReportFromNpmTree } from '../../shared/transform.js'\nimport type { OutputFormat, Report } from '../../shared/types.js'\nimport { getToolVersion } from '../../shared/cli/utils.js'\n\nimport { bunPmLs, bunPmRootGlobal, bunPmRootLocal } from './package-manager.js'\n\n/**\n * Options for Bun report generation\n */\nexport interface ReportOptions {\n outputFormat: OutputFormat\n outFile?: string\n fullTree?: boolean\n omitDev?: boolean\n cwd?: string\n}\n\n/**\n * Result of report generation including markdown extras\n */\nexport interface ReportResult {\n report: Report\n markdownExtras?: {\n project_description?: string\n project_homepage?: string\n project_bugs?: string\n }\n}\n\n/**\n * Produces a dependency report for local or global context using Bun package manager\n *\n * @param ctx - Context for report generation ('local' or 'global')\n * @param options - Report generation options\n * @returns Report and optional markdown extras\n */\nexport async function produceReport(\n ctx: 'local' | 'global',\n options: ReportOptions,\n): Promise<ReportResult> {\n const toolVersion = await getToolVersion()\n const cwd = options.cwd || process.cwd()\n\n const tree = await bunPmLs({\n global: ctx === 'global',\n omitDev: ctx === 'local' ? Boolean(options.omitDev) : false,\n cwd,\n })\n const nodeModulesPath = tree?.node_modules_path\n\n let project_description: string | undefined\n let project_homepage: string | undefined\n let project_bugs: string | undefined\n\n if (ctx === 'local') {\n try {\n const pkgRaw = await readFile(path.join(cwd, 'package.json'), 'utf8')\n const pkg = JSON.parse(pkgRaw)\n project_description = pkg.description\n project_homepage = pkg.homepage\n if (typeof pkg.bugs === 'string') project_bugs = pkg.bugs\n else if (pkg.bugs && typeof pkg.bugs.url === 'string') project_bugs = pkg.bugs.url\n } catch {\n // Ignore errors reading local package.json (e.g., file missing or invalid JSON)\n void 0\n }\n }\n\n const resolvedRoot = nodeModulesPath\n ? nodeModulesPath\n : ctx === 'global'\n ? await bunPmRootGlobal().catch(() => undefined)\n : await bunPmRootLocal(cwd).catch(() => `${cwd}/node_modules`)\n\n const report = await buildReportFromNpmTree(tree, {\n context: ctx,\n includeTree: Boolean(options.fullTree),\n omitDev: Boolean(options.omitDev),\n cwd,\n toolVersion,\n globalRoot: resolvedRoot,\n })\n\n const markdownExtras = { project_description, project_homepage, project_bugs }\n return { report, markdownExtras }\n}\n","/**\n * @fileoverview Data transformation utilities for converting npm tree data into reports\n */\n\nimport path from 'node:path'\nimport { readFile } from 'node:fs/promises'\n\nimport type { PackageInfo, Report } from './types.js'\n\n/**\n * Options for report generation and normalization\n */\nexport type NormalizeOptions = {\n /** Context for report generation ('local' or 'global') */\n context: 'local' | 'global'\n /** Whether to include the full npm dependency tree */\n includeTree?: boolean\n /** Whether to omit devDependencies (local context only) */\n omitDev?: boolean\n /** Current working directory */\n cwd?: string\n /** Tool version to include in report */\n toolVersion: string\n /** Global npm root directory path */\n globalRoot?: string\n}\n\n/**\n * Converts npm dependency object to array of package entries\n *\n * @param obj - npm dependency object from npm ls output\n * @returns Array of name/node pairs for packages\n */\nfunction toPkgArray(obj: Record<string, any> | undefined | null): { name: string; node: any }[] {\n if (!obj) return []\n return Object.keys(obj)\n .map((name) => ({ name, node: obj[name] }))\n .filter((p) => p && p.node)\n}\n\n/**\n * Builds a GEX report from npm ls tree output\n *\n * @param tree - Raw npm ls command output\n * @param opts - Report generation options\n * @returns Promise resolving to a formatted Report object\n *\n * @example\n * ```typescript\n * import { buildReportFromNpmTree } from './transform.js'\n * import { npmLs } from './npm.js'\n *\n * const tree = await npmLs({ depth0: true })\n * const report = await buildReportFromNpmTree(tree, {\n * context: 'local',\n * toolVersion: '0.3.2',\n * cwd: process.cwd()\n * })\n *\n * console.log(`Found ${report.local_dependencies.length} dependencies`)\n * ```\n */\nexport async function buildReportFromNpmTree(tree: any, opts: NormalizeOptions): Promise<Report> {\n const timestamp = new Date().toISOString()\n const report: Report = {\n report_version: '1.0',\n timestamp,\n tool_version: opts.toolVersion,\n global_packages: [],\n local_dependencies: [],\n local_dev_dependencies: [],\n }\n\n if (opts.context === 'local') {\n let pkgMeta: any = null\n try {\n const pkgJsonPath = path.join(opts.cwd || process.cwd(), 'package.json')\n const raw = await readFile(pkgJsonPath, 'utf8')\n pkgMeta = JSON.parse(raw)\n } catch {\n // Ignore errors reading/parsing package.json; fall back to undefined metadata\n void 0\n }\n if (pkgMeta?.name) report.project_name = pkgMeta.name\n if (pkgMeta?.version) report.project_version = pkgMeta.version\n\n const depsObj = tree?.dependencies as Record<string, any> | undefined\n const devDepsObj = tree?.devDependencies as Record<string, any> | undefined\n const prodItems = toPkgArray(depsObj)\n const treeDevItems = toPkgArray(devDepsObj)\n\n if (treeDevItems.length > 0) {\n for (const { name, node } of treeDevItems) {\n const version = (node && node.version) || ''\n const resolvedPath =\n (node && node.path) || path.join(opts.cwd || process.cwd(), 'node_modules', name)\n report.local_dev_dependencies.push({ name, version, resolved_path: resolvedPath })\n }\n }\n\n const devKeys =\n treeDevItems.length > 0\n ? new Set(treeDevItems.map((entry) => entry.name))\n : new Set(Object.keys((pkgMeta?.devDependencies as Record<string, string>) || {}))\n\n for (const { name, node } of prodItems) {\n const version = (node && node.version) || ''\n const resolvedPath =\n (node && node.path) || path.join(opts.cwd || process.cwd(), 'node_modules', name)\n const pkg: PackageInfo = { name, version, resolved_path: resolvedPath }\n if (!treeDevItems.length && devKeys.has(name)) {\n report.local_dev_dependencies.push(pkg)\n } else {\n report.local_dependencies.push(pkg)\n }\n }\n\n report.local_dependencies.sort((a, b) => a.name.localeCompare(b.name))\n report.local_dev_dependencies.sort((a, b) => a.name.localeCompare(b.name))\n } else if (opts.context === 'global') {\n const depsObj = tree?.dependencies as Record<string, any> | undefined\n const items = toPkgArray(depsObj)\n\n for (const { name, node } of items) {\n const version = (node && node.version) || ''\n const resolvedPath = (node && node.path) || path.join(opts.globalRoot || '', name)\n const pkg: PackageInfo = { name, version, resolved_path: resolvedPath }\n report.global_packages.push(pkg)\n }\n\n report.global_packages.sort((a, b) => a.name.localeCompare(b.name))\n }\n\n if (opts.includeTree) {\n report.tree = tree\n }\n\n return report\n}\n","import path from 'node:path'\nimport { constants as fsConstants, type Dirent } from 'node:fs'\nimport { access, readFile, readdir, stat } from 'node:fs/promises'\nimport { promisify } from 'node:util'\n\nexport type BunPmLsOptions = {\n global?: boolean\n omitDev?: boolean\n depth0?: boolean\n cwd?: string\n}\n\ntype PackageNode = {\n version: string\n path: string\n}\n\ntype BunPackageTree = {\n dependencies: Record<string, PackageNode>\n devDependencies?: Record<string, PackageNode>\n node_modules_path?: string\n}\n\nconst IGNORED_ENTRIES = new Set(['.bin'])\n\n/**\n * Executes a Bun package listing by inspecting node_modules directories directly.\n */\nexport async function bunPmLs(options: BunPmLsOptions = {}): Promise<BunPackageTree> {\n if (options.global) {\n const root = await bunPmRootGlobal()\n const manifest = await readJson(path.join(path.dirname(root), 'package.json'))\n const selections = buildSelections(manifest, { includeDev: false })\n const dependencies =\n selections.prod.size > 0\n ? await collectPackagesForNames(root, mapSelections(selections.prod))\n : await collectPackagesFromNodeModules(root)\n return { dependencies, node_modules_path: root }\n }\n\n const cwd = options.cwd || process.cwd()\n const nodeModulesPath = await bunPmRootLocal(cwd)\n const manifest = await readJson(path.join(cwd, 'package.json'))\n const includeDev = !options.omitDev\n const selections = buildSelections(manifest, { includeDev })\n\n const dependencies =\n selections.prod.size > 0\n ? await collectPackagesForNames(nodeModulesPath, mapSelections(selections.prod))\n : await collectPackagesFromNodeModules(nodeModulesPath)\n\n let devDependencies: Record<string, PackageNode> | undefined\n if (includeDev) {\n if (selections.dev.size > 0) {\n devDependencies = await collectPackagesForNames(\n nodeModulesPath,\n mapSelections(selections.dev),\n )\n } else {\n devDependencies = {}\n }\n }\n\n return { dependencies, devDependencies, node_modules_path: nodeModulesPath }\n}\n\n/**\n * Attempts to resolve the Bun global node_modules directory.\n */\nexport async function bunPmRootGlobal(): Promise<string> {\n if (process.env.GEX_BUN_GLOBAL_ROOT) {\n return process.env.GEX_BUN_GLOBAL_ROOT\n }\n\n const candidates = getGlobalRootCandidates()\n for (const candidate of candidates) {\n if (candidate && (await pathExists(candidate))) {\n return candidate\n }\n }\n\n return (\n candidates.find((c) => Boolean(c)) ||\n path.join(process.env.HOME || process.cwd(), '.bun', 'install', 'global', 'node_modules')\n )\n}\n\n/**\n * Resolves the Bun local node_modules directory for the provided cwd.\n */\nexport async function bunPmRootLocal(cwd: string = process.cwd()): Promise<string> {\n if (process.env.GEX_BUN_LOCAL_ROOT) {\n return process.env.GEX_BUN_LOCAL_ROOT\n }\n return path.join(cwd, 'node_modules')\n}\n\nexport type BunUpdateOptions = {\n cwd: string\n global?: boolean\n packages?: string[]\n}\n\nexport async function bunUpdate(options: BunUpdateOptions): Promise<void> {\n const execFileAsync = await getExecFileAsync()\n const packages = options.packages && options.packages.length > 0 ? options.packages : []\n\n if (options.global) {\n const targets = packages.length > 0 ? packages : []\n const list = targets.length > 0 ? targets : []\n const cmdPackages = list.map((name) => `${name}@latest`)\n try {\n await execFileAsync('bun', ['add', '-g', ...cmdPackages], {\n cwd: options.cwd,\n maxBuffer: 10 * 1024 * 1024,\n })\n } catch (error: any) {\n const stderr = typeof error?.stderr === 'string' ? error.stderr.trim() : ''\n throw new Error(`bun add -g failed: ${stderr || error?.message || 'unknown error'}`)\n }\n return\n }\n\n const args = ['update']\n if (packages.length > 0) args.push(...packages)\n\n try {\n await execFileAsync('bun', args, {\n cwd: options.cwd,\n maxBuffer: 10 * 1024 * 1024,\n })\n } catch (error: any) {\n const stderr = typeof error?.stderr === 'string' ? error.stderr.trim() : ''\n throw new Error(`bun update failed: ${stderr || error?.message || 'unknown error'}`)\n }\n}\n\nasync function collectPackagesForNames(\n nodeModulesPath: string,\n packages: { name: string; declared?: string }[],\n): Promise<Record<string, PackageNode>> {\n const result: Record<string, PackageNode> = {}\n await Promise.all(\n packages.map(async ({ name, declared }) => {\n const pkgDir = packageDir(nodeModulesPath, name)\n const manifest = await readJson(path.join(pkgDir, 'package.json'))\n const pkgName = typeof manifest?.name === 'string' ? manifest.name : name\n const version = typeof manifest?.version === 'string' ? manifest.version : declared || ''\n result[pkgName] = { version, path: pkgDir }\n }),\n )\n return result\n}\n\nasync function collectPackagesFromNodeModules(root: string): Promise<Record<string, PackageNode>> {\n const result: Record<string, PackageNode> = {}\n const entries = await safeReadDir(root)\n\n for (const entry of entries) {\n if (!entry || !entry.name || entry.name.startsWith('.') || IGNORED_ENTRIES.has(entry.name)) {\n continue\n }\n\n const entryPath = path.join(root, entry.name)\n if (!(await isDir(entry, entryPath))) continue\n\n if (entry.name.startsWith('@')) {\n const scopedEntries = await safeReadDir(entryPath)\n for (const scopedEntry of scopedEntries) {\n if (!scopedEntry || !scopedEntry.name || scopedEntry.name.startsWith('.')) continue\n const scopedPath = path.join(entryPath, scopedEntry.name)\n if (!(await isDir(scopedEntry, scopedPath))) continue\n const manifest = await readJson(path.join(scopedPath, 'package.json'))\n const pkgName =\n typeof manifest?.name === 'string' ? manifest.name : `${entry.name}/${scopedEntry.name}`\n const version = typeof manifest?.version === 'string' ? manifest.version : ''\n result[pkgName] = { version, path: scopedPath }\n }\n } else {\n const manifest = await readJson(path.join(entryPath, 'package.json'))\n const pkgName = typeof manifest?.name === 'string' ? manifest.name : entry.name\n const version = typeof manifest?.version === 'string' ? manifest.version : ''\n result[pkgName] = { version, path: entryPath }\n }\n }\n\n return result\n}\n\nasync function readJson(file: string): Promise<any | null> {\n try {\n const raw = await readFile(file, 'utf8')\n return JSON.parse(raw)\n } catch {\n return null\n }\n}\n\nfunction packageDir(root: string, packageName: string): string {\n const segments = packageName.startsWith('@') ? packageName.split('/') : [packageName]\n return path.join(root, ...segments)\n}\n\nfunction buildSelections(\n manifest: Record<string, any> | null,\n { includeDev }: { includeDev: boolean },\n): { prod: Map<string, string | undefined>; dev: Map<string, string | undefined> } {\n const prod = new Map<string, string | undefined>()\n const dev = new Map<string, string | undefined>()\n\n const addAll = (\n target: Map<string, string | undefined>,\n record: Record<string, string> | undefined,\n ) => {\n if (!record) return\n for (const [name, range] of Object.entries(record)) {\n if (!target.has(name)) {\n target.set(name, range)\n }\n }\n }\n\n addAll(prod, manifest?.dependencies)\n addAll(prod, manifest?.optionalDependencies)\n if (includeDev) addAll(dev, manifest?.devDependencies)\n\n return { prod, dev }\n}\n\nfunction mapSelections(\n map: Map<string, string | undefined>,\n): { name: string; declared?: string }[] {\n return Array.from(map.entries()).map(([name, declared]) => ({ name, declared }))\n}\n\nasync function safeReadDir(dir: string): Promise<Dirent[]> {\n try {\n return await readdir(dir, { withFileTypes: true })\n } catch {\n return []\n }\n}\n\nasync function isDir(entry: Dirent, fullPath: string): Promise<boolean> {\n if (entry.isDirectory()) return true\n if (entry.isSymbolicLink()) {\n try {\n const stats = await stat(fullPath)\n return stats.isDirectory()\n } catch {\n return false\n }\n }\n return false\n}\n\nasync function pathExists(target: string): Promise<boolean> {\n try {\n await access(target, fsConstants.R_OK)\n return true\n } catch {\n return false\n }\n}\n\nfunction getGlobalRootCandidates(): string[] {\n const candidates = new Set<string>()\n const bunInstall =\n process.env.BUN_INSTALL || (process.env.HOME ? path.join(process.env.HOME, '.bun') : undefined)\n const maybeAdd = (value: string | undefined) => {\n if (value) candidates.add(value)\n }\n\n if (bunInstall) {\n maybeAdd(path.join(bunInstall, 'install', 'global', 'node_modules'))\n maybeAdd(path.join(bunInstall, 'global', 'node_modules'))\n }\n if (process.env.XDG_DATA_HOME) {\n maybeAdd(path.join(process.env.XDG_DATA_HOME, 'bun', 'install', 'global', 'node_modules'))\n }\n maybeAdd('/usr/local/share/bun/global/node_modules')\n maybeAdd('/opt/homebrew/var/bun/install/global/node_modules')\n\n return Array.from(candidates)\n}\n\nasync function getExecFileAsync(): Promise<(\n command: string,\n args?: readonly string[] | null,\n options?: any,\n) => Promise<{ stdout: string; stderr: string }>> {\n const { execFile } = await import('node:child_process')\n return promisify(execFile) as any\n}\n","/**\n * @fileoverview Bun CLI runner for GEX dependency auditing tool\n *\n * This module only exports the `run` function and does not auto-execute\n * itself. Binary entrypoints (e.g. `cli-bun`) are responsible for invoking\n * `run()` when appropriate so this file can be safely imported by other\n * entrypoints without triggering side effects.\n */\n\nimport { createProgram } from './commands.js'\n\n/**\n * Main CLI runner function for Bun runtime\n *\n * @param argv - Command line arguments (defaults to process.argv)\n */\nexport async function run(argv = process.argv): Promise<void> {\n const program = await createProgram()\n await program.parseAsync(argv)\n}\n","/**\n * @fileoverview Bun CLI entrypoint for the `gex-bun` binary.\n *\n * This thin wrapper invokes the shared Bun runtime `run` function when the\n * generated bundle is executed as the main module.\n *\n * Bun treats any use of CommonJS globals like `module` as a signal that the\n * file is CommonJS, which then forbids `import` statements that rely on ESM\n * semantics. To keep this bundle ESM-only (and avoid Bun's\n * \"Cannot use import statement with CommonJS-only features\" error), we detect\n * \"main\" status using ESM-friendly checks only.\n */\n\nimport { run } from './cli.js'\n\nconst isMainModule = (() => {\n try {\n // Bun exposes `import.meta.main` for main-module detection.\n if (typeof import.meta !== 'undefined' && 'main' in import.meta) {\n return (import.meta as any).main === true\n }\n\n // Fallback: compare the current module URL to the executed script path.\n if (typeof import.meta !== 'undefined' && typeof process !== 'undefined') {\n return import.meta.url === `file://${process.argv[1]}`\n }\n\n return false\n } catch {\n return false\n }\n})()\n\nif (isMainModule) {\n run().catch((error) => {\n console.error('Bun CLI error:', error)\n process.exitCode = 1\n })\n}\n"],"mappings":"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","names":["path","readFile","promisify","path","getExecFileAsync","getExecFileAsync","readFile","path","readFile","path","path","readFile","path","readFile","promisify","manifest","selections","dependencies","getExecFileAsync","readFile","path","path","readFile"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yabasha/gex",
3
- "version": "1.3.7",
3
+ "version": "1.3.8",
4
4
  "private": false,
5
5
  "description": "A CLI tool for auditing and documenting your Node.js package environment, generating comprehensive reports of global and local dependencies.",
6
6
  "type": "module",