Initial commit
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
export declare enum PM {
|
||||
PNPM = "pnpm",
|
||||
YARN = "yarn",
|
||||
YARN_BERRY = "yarn-berry",
|
||||
BUN = "bun",
|
||||
NPM = "npm",
|
||||
TRAVERSAL = "traversal"
|
||||
}
|
||||
export declare function getPackageManagerCommand(pm: PM): string;
|
||||
type PackageManagerSetup = {
|
||||
pm: PM;
|
||||
corepackConfig: string | undefined;
|
||||
resolvedDirectory: string | undefined;
|
||||
detectionMethod: string;
|
||||
};
|
||||
export declare function detectPackageManager(searchPaths: string[]): Promise<PackageManagerSetup>;
|
||||
export {};
|
||||
Reference in New Issue
Block a user