pnpm
Version:
A fast implementation of npm install
12 lines (11 loc) • 350 B
TypeScript
import { StrictPnpmOptions } from '../types';
import { Package } from '../types';
import { StoreJson } from '../fs/storeJsonController';
export declare type PnpmContext = {
pkg?: Package;
cache: string;
store: string;
root: string;
storeJson: StoreJson;
};
export default function (opts: StrictPnpmOptions): Promise<PnpmContext>;