UNPKG

@telefonica/opensource-scaffold

Version:

Scaffolding for open source projects. A CLI tool to create open source repositories with standard tools and resources

9 lines (8 loc) 264 B
/** * The supported licenses in the scaffold */ export type SupportedLicense = "MPL-2.0" | "Apache-2.0" | "MIT" | "AGPL-3.0-or-later" | "AGPL-3.0-only"; /** * The URLs to the FAQs for each license */ export type LicenseFAQs = Record<SupportedLicense, string>;