UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.46 kB
/** * **pluto** - A cli tool to help discover deprecated apiVersions in Kubernetes * * @domain `fairwinds.com/pluto` * @programs `pluto` * @version `5.22.5` (25 versions available) * @versions From newest version to oldest. * * @install `launchpad install pluto` * @name `pluto` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.pluto * // Or access via domain * const samePkg = pantry.fairwindscompluto * console.log(pkg === samePkg) // true * console.log(pkg.name) // "pluto" * console.log(pkg.description) // "A cli tool to help discover deprecated apiVersi..." * console.log(pkg.programs) // ["pluto"] * console.log(pkg.versions[0]) // "5.22.5" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/fairwinds-com/pluto.md * @see https://ts-pkgx.netlify.app/usage */ export declare const plutoPackage: { /** * The display name of this package. */ name: 'pluto'; /** * The canonical domain name for this package. */ domain: 'fairwinds.com/pluto'; /** * Brief description of what this package does. */ description: 'A cli tool to help discover deprecated apiVersions in Kubernetes'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/fairwinds.com/pluto/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/FairwindsOps/pluto'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install pluto'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['pluto']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.22.5', '5.22.3', '5.22.2', '5.22.1', '5.22.0', '5.21.9', '5.21.8', '5.21.7', '5.21.6', '5.21.4', '5.21.3', '5.21.2', '5.21.1', '5.21.0', '5.20.3', '5.20.2', '5.20.1', '5.20.0', '5.19.4', '5.19.3', '5.19.2', '5.19.1', '5.19.0', '5.18.6', '5.18.5']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) pluto -- $SHELL -i'; launchpadInstallCommand: 'launchpad install pluto' }; export type PlutoPackage = typeof plutoPackage