UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.27 kB
/** * **convco** - Conventional commits, changelog, versioning, validation * * @domain `convco.github.io` * @programs `convco` * @version `0.6.2` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install convco` * @name `convco` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.convco * // Or access via domain * const samePkg = pantry.convcogithubio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "convco" * console.log(pkg.description) // "Conventional commits, changelog, versioning, va..." * console.log(pkg.programs) // ["convco"] * console.log(pkg.versions[0]) // "0.6.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/convco-github-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const convcoPackage: { /** * The display name of this package. */ name: 'convco'; /** * The canonical domain name for this package. */ domain: 'convco.github.io'; /** * Brief description of what this package does. */ description: 'Conventional commits, changelog, versioning, validation'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/convco.github.io/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install convco'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['convco']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.6.2', '0.6.1', '0.6.0', '0.5.2', '0.5.1', '0.5.0', '0.4.3', '0.4.2', '0.4.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) convco -- $SHELL -i'; launchpadInstallCommand: 'launchpad install convco' }; export type ConvcoPackage = typeof convcoPackage