UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.22 kB
/** * **changie** - Automated changelog tool for preparing releases with lots of customization options * * @domain `changie.dev` * @programs `changie` * @version `1.22.0` (8 versions available) * @versions From newest version to oldest. * * @install `launchpad install changie` * @aliases `changie` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.changie * // Or access via domain * const samePkg = pantry.changiedev * console.log(pkg === samePkg) // true * console.log(pkg.name) // "changie.dev" * console.log(pkg.description) // "Automated changelog tool for preparing releases..." * console.log(pkg.programs) // ["changie"] * console.log(pkg.versions[0]) // "1.22.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/changie-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const changiePackage: { /** * The display name of this package. */ name: 'changie.dev'; /** * The canonical domain name for this package. */ domain: 'changie.dev'; /** * Brief description of what this package does. */ description: 'Automated changelog tool for preparing releases with lots of customization options'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/changie.dev/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/miniscruff/changie'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install changie'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['changie']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.22.0', '1.21.1', '1.21.0', '1.20.1', '1.20.0', '1.19.1', '1.19.0', '1.18.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['changie'] }; export type ChangiePackage = typeof changiePackage