UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.62 kB
/** * **skopeo** - Work with remote images registries - retrieving information, images, signing content * * @domain `github.com/containers/skopeo` * @programs `skopeo` * @version `1.20.0` (16 versions available) * @versions From newest version to oldest. * * @install `launchpad install skopeo` * @name `skopeo` * @dependencies `curl.se/ca-certs` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.skopeo * // Or access via domain * const samePkg = pantry.githubcomcontainersskopeo * console.log(pkg === samePkg) // true * console.log(pkg.name) // "skopeo" * console.log(pkg.description) // "Work with remote images registries - retrieving..." * console.log(pkg.programs) // ["skopeo"] * console.log(pkg.versions[0]) // "1.20.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/containers/skopeo.md * @see https://ts-pkgx.netlify.app/usage */ export declare const skopeoPackage: { /** * The display name of this package. */ name: 'skopeo'; /** * The canonical domain name for this package. */ domain: 'github.com/containers/skopeo'; /** * Brief description of what this package does. */ description: 'Work with remote images registries - retrieving information, images, signing content'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/containers/skopeo/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install skopeo'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['skopeo']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['curl.se/ca-certs']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.20.0', '1.19.0', '1.18.0', '1.17.0', '1.16.1', '1.16.0', '1.15.2', '1.15.1', '1.15.0', '1.14.5', '1.14.4', '1.14.3', '1.14.2', '1.14.1', '1.14.0', '1.13.3']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) skopeo -- $SHELL -i'; launchpadInstallCommand: 'launchpad install skopeo' }; export type SkopeoPackage = typeof skopeoPackage