UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

53 lines 1.52 kB
/** * **ucl** - pkgx package * * @domain `oberhumer.com/ucl` * @version `1.3.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install +oberhumer.com/ucl -- $SHELL -i` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.oberhumercomucl * console.log(pkg.name) // "ucl" * console.log(pkg.versions[0]) // "1.3.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/oberhumer-com/ucl.md * @see https://ts-pkgx.netlify.app/usage */ export declare const oberhumercomuclPackage: { /** * The display name of this package. */ name: 'ucl'; /** * The canonical domain name for this package. */ domain: 'oberhumer.com/ucl'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/oberhumer.com/ucl/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +oberhumer.com/ucl -- $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.3.0']; aliases: readonly [] }; export type OberhumercomuclPackage = typeof oberhumercomuclPackage