UNPKG

license-kit

Version:

Aggregate license notes of OSS libraries used in your Node.js project, analyze & visualize OSS licenses with AI-turbocharged tooling

12 lines (10 loc) 275 B
/** * Enumerates all valid CLI format flag values * * @see {@link Format} */ export const validFormats = ['json', 'about-json', 'text', 'markdown'] as const; /** * Type of CLI flag that controls the output format */ export type Format = (typeof validFormats)[number];