UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.69 kB
/** * **container-structure-test** - validate the structure of your container images * * @domain `github.com/GoogleContainerTools/container-structure-test` * @programs `container-structure-test` * @version `1.19.3` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install container-structure-test` * @name `container-structure-test` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.containerstructuretest * // Or access via domain * const samePkg = pantry.githubcomgooglecontainertoolscontainerstructuretest * console.log(pkg === samePkg) // true * console.log(pkg.name) // "container-structure-test" * console.log(pkg.description) // "validate the structure of your container images" * console.log(pkg.programs) // ["container-structure-test"] * console.log(pkg.versions[0]) // "1.19.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/GoogleContainerTools/container-structure-test.md * @see https://ts-pkgx.netlify.app/usage */ export declare const containerstructuretestPackage: { /** * The display name of this package. */ name: 'container-structure-test'; /** * The canonical domain name for this package. */ domain: 'github.com/GoogleContainerTools/container-structure-test'; /** * Brief description of what this package does. */ description: 'validate the structure of your container images'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/GoogleContainerTools/container-structure-test/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/GoogleContainerTools/container-structure-test'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install container-structure-test'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['container-structure-test']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.19.3', '1.19.2', '1.19.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) container-structure-test -- $SHELL -i'; launchpadInstallCommand: 'launchpad install container-structure-test' }; export type ContainerstructuretestPackage = typeof containerstructuretestPackage