UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.32 kB
/** * **skaffold** - Easy and Repeatable Kubernetes Development * * @domain `skaffold.dev` * @programs `skaffold` * @version `2.16.1` (15 versions available) * @versions From newest version to oldest. * * @install `launchpad install skaffold` * @name `skaffold` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.skaffold * // Or access via domain * const samePkg = pantry.skaffolddev * console.log(pkg === samePkg) // true * console.log(pkg.name) // "skaffold" * console.log(pkg.description) // "Easy and Repeatable Kubernetes Development" * console.log(pkg.programs) // ["skaffold"] * console.log(pkg.versions[0]) // "2.16.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/skaffold-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const skaffoldPackage: { /** * The display name of this package. */ name: 'skaffold'; /** * The canonical domain name for this package. */ domain: 'skaffold.dev'; /** * Brief description of what this package does. */ description: 'Easy and Repeatable Kubernetes Development'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/skaffold.dev/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install skaffold'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['skaffold']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.16.1', '2.16.0', '2.15.0', '2.14.2', '2.14.1', '2.14.0', '2.13.2', '2.13.0', '2.12.0', '2.11.1', '2.11.0', '2.10.1', '2.10.0', '2.9.0', '2.8.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) skaffold -- $SHELL -i'; launchpadInstallCommand: 'launchpad install skaffold' }; export type SkaffoldPackage = typeof skaffoldPackage