UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.38 kB
/** * **stern** - ⎈ Multi pod and container log tailing for Kubernetes -- Friendly fork of https://github.com/wercker/stern * * @domain `github.com/stern/stern` * @programs `stern` * @version `1.32.0` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install stern` * @name `stern` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.stern * // Or access via domain * const samePkg = pantry.githubcomsternstern * console.log(pkg === samePkg) // true * console.log(pkg.name) // "stern" * console.log(pkg.description) // "⎈ Multi pod and container log tailing for Kuber..." * console.log(pkg.programs) // ["stern"] * console.log(pkg.versions[0]) // "1.32.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/stern/stern.md * @see https://ts-pkgx.netlify.app/usage */ export declare const sternPackage: { /** * The display name of this package. */ name: 'stern'; /** * The canonical domain name for this package. */ domain: 'github.com/stern/stern'; /** * Brief description of what this package does. */ description: '⎈ Multi pod and container log tailing for Kubernetes -- Friendly fork of https://github.com/wercker/stern'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/stern/stern/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install stern'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['stern']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.32.0', '1.31.0', '1.30.0', '1.29.0', '1.28.0', '1.27.0', '1.26.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) stern -- $SHELL -i'; launchpadInstallCommand: 'launchpad install stern' }; export type SternPackage = typeof sternPackage