| 9 | type PackageManager = "npm" | "pnpm" | "yarn" | "bun"; |
| 10 | |
| 11 | interface InstallCommand { |
| 12 | command: string; |
| 13 | args: string[]; |
| 14 | } |
| 15 | |
| 16 | /** |
| 17 | * Detects which package manager installed the running mgrep binary by |
nothing calls this directly
no outgoing calls
no test coverage detected