/** * **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.build` * @homepage https://ko.build * @buildDependencies `go.dev@^1.22` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.kobuild * 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 kobuildPackage: { /** * 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: 'https://ko.build'; githubUrl: 'https://github.com/ko-build/ko'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install ko.build'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +ko.build -- $SHELL -i'; launchpadInstallCommand: 'launchpad install ko.build'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['ko']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.22']; /** * 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']; aliases: readonly [] }; export type KobuildPackage = typeof kobuildPackage