UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.2 kB
/** * **uplift** - Semantic versioning the easy way. Powered by Conventional Commits. Built for use with CI. * * @domain `upliftci.dev` * @programs `uplift` * @version `2.25.0` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install uplift` * @aliases `uplift` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.uplift * // Or access via domain * const samePkg = pantry.upliftcidev * console.log(pkg === samePkg) // true * console.log(pkg.name) // "upliftci.dev" * console.log(pkg.description) // "Semantic versioning the easy way. Powered by Co..." * console.log(pkg.programs) // ["uplift"] * console.log(pkg.versions[0]) // "2.25.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/upliftci-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const upliftPackage: { /** * The display name of this package. */ name: 'upliftci.dev'; /** * The canonical domain name for this package. */ domain: 'upliftci.dev'; /** * Brief description of what this package does. */ description: 'Semantic versioning the easy way. Powered by Conventional Commits. Built for use with CI.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/upliftci.dev/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install uplift'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['uplift']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.25.0', '2.24.1', '2.24.0', '2.23.0', '2.22.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['uplift'] }; export type UpliftPackage = typeof upliftPackage