UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.09 kB
/** * **license** - Command line license text generator. * * @domain `github.com/nishanths/license` * @programs `license` * @version `5.0.4` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install license` * @name `license` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.license * // Or access via domain * const samePkg = pantry.githubcomnishanthslicense * console.log(pkg === samePkg) // true * console.log(pkg.name) // "license" * console.log(pkg.description) // "Command line license text generator." * console.log(pkg.programs) // ["license"] * console.log(pkg.versions[0]) // "5.0.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/nishanths/license.md * @see https://ts-pkgx.netlify.app/usage */ export declare const licensePackage: { /** * The display name of this package. */ name: 'license'; /** * The canonical domain name for this package. */ domain: 'github.com/nishanths/license'; /** * Brief description of what this package does. */ description: 'Command line license text generator.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/nishanths/license/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install license'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['license']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.0.4']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type LicensePackage = typeof licensePackage