/** * **changie** - Automated changelog tool for preparing releases with lots of customization options * * @domain `changie.dev` * @programs `changie` * @version `1.24.0` (11 versions available) * @versions From newest version to oldest. * * @install `launchpad install changie.dev` * @homepage https://changie.dev/ * @buildDependencies `go.dev@>=1.21` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.changiedev * console.log(pkg.name) // "changie" * console.log(pkg.description) // "Automated changelog tool for preparing releases..." * console.log(pkg.programs) // ["changie"] * console.log(pkg.versions[0]) // "1.24.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/changie-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const changiedevPackage: { /** * The display name of this package. */ name: 'changie'; /** * 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: 'https://changie.dev/'; githubUrl: 'https://github.com/miniscruff/changie'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install changie.dev'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +changie.dev -- $SHELL -i'; launchpadInstallCommand: 'launchpad install changie.dev'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['changie']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@>=1.21']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.24.0', '1.23.0', '1.22.1', '1.22.0', '1.21.1', '1.21.0', '1.20.1', '1.20.0', '1.19.1', '1.19.0', '1.18.0']; aliases: readonly [] }; export type ChangiedevPackage = typeof changiedevPackage