@aquaori/deplens
Version:
A precise dependency analysis tool for npm and pnpm projects
11 lines • 329 B
TypeScript
import { Dependency } from '../types';
/**
* 解析 npm lockfile
* @param manifestPath lockfile 路径
* @returns 依赖列表和检查计数
*/
export declare function parseNpmLockfile(manifestPath: string, ignoreList: string[]): {
dependencies: Dependency[];
checkCount: number;
};
//# sourceMappingURL=npm.d.ts.map