UNPKG

@aquaori/deplens

Version:

A precise dependency analysis tool for npm and pnpm projects

11 lines 332 B
import { Dependency } from '../types'; /** * 解析 pnpm lockfile * @param manifestPath lockfile 路径 * @returns 依赖列表和检查计数 */ export declare function parsePnpmLockfile(manifestPath: string, ignoreList: string[]): { dependencies: Dependency[]; checkCount: number; }; //# sourceMappingURL=pnpm.d.ts.map