UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.38 kB
/** * **gti** - ASCII-art displaying typo-corrector for commands * * @domain `r-wos.org/gti` * @programs `gti` * @version `1.9.1` (43 versions available) * @versions From newest version to oldest. * * @install `launchpad install gti` * @name `gti` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.gti * // Or access via domain * const samePkg = pantry.rwosorggti * console.log(pkg === samePkg) // true * console.log(pkg.name) // "gti" * console.log(pkg.description) // "ASCII-art displaying typo-corrector for commands" * console.log(pkg.programs) // ["gti"] * console.log(pkg.versions[0]) // "1.9.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/r-wos-org/gti.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gtiPackage: { /** * The display name of this package. */ name: 'gti'; /** * The canonical domain name for this package. */ domain: 'r-wos.org/gti'; /** * Brief description of what this package does. */ description: 'ASCII-art displaying typo-corrector for commands'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/r-wos.org/gti/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gti'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gti']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.1', '1.9.0', '1.8.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type GtiPackage = typeof gtiPackage