UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.11 kB
/** * **ko** - Build and deploy Go applications on Kubernetes * * @domain `ko.build` * @programs `ko` * @version `0.18.0` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install ko` * @name `ko` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.ko * // Or access via domain * const samePkg = pantry.kobuild * console.log(pkg === samePkg) // true * console.log(pkg.name) // "ko" * console.log(pkg.description) // "Build and deploy Go applications on Kubernetes" * console.log(pkg.programs) // ["ko"] * console.log(pkg.versions[0]) // "0.18.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/ko-build.md * @see https://ts-pkgx.netlify.app/usage */ export declare const koPackage: { /** * The display name of this package. */ name: 'ko'; /** * The canonical domain name for this package. */ domain: 'ko.build'; /** * Brief description of what this package does. */ description: 'Build and deploy Go applications on Kubernetes'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/ko.build/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install ko'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['ko']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.18.0', '0.17.1', '0.17.0', '0.16.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) ko -- $SHELL -i'; launchpadInstallCommand: 'launchpad install ko' }; export type KoPackage = typeof koPackage