generate-license-file
Version:
Generates a text file containing all of the licenses for your production dependencies
8 lines (7 loc) • 362 B
TypeScript
import { LicenseNoticeKey, ResolvedLicense } from "../resolveLicenses";
type ResolveLicensesOptions = {
replace?: Record<string, string>;
exclude?: string[];
};
export declare const resolveDependenciesForNpmProject: (packageJson: string, licensesMap: Map<LicenseNoticeKey, ResolvedLicense>, options?: ResolveLicensesOptions) => Promise<void>;
export {};