UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

62 lines 1.92 kB
/** * **libpipeline** - pkgx package * * @domain `libpipeline.gitlab.io/libpipeline` * @version `1.5.8` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install +libpipeline.gitlab.io/libpipeline -- $SHELL -i` * @name `libpipeline` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.libpipeline * // Or access via domain * const samePkg = pantry.libpipelinegitlabiolibpipeline * console.log(pkg === samePkg) // true * console.log(pkg.name) // "libpipeline" * console.log(pkg.versions[0]) // "1.5.8" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/libpipeline-gitlab-io/libpipeline.md * @see https://ts-pkgx.netlify.app/usage */ export declare const libpipelinePackage: { /** * The display name of this package. */ name: 'libpipeline'; /** * The canonical domain name for this package. */ domain: 'libpipeline.gitlab.io/libpipeline'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/libpipeline.gitlab.io/libpipeline/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +libpipeline.gitlab.io/libpipeline -- $SHELL -i'; programs: readonly []; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.5.8', '1.5.7']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type LibpipelinePackage = typeof libpipelinePackage