UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.34 kB
/** * **copa** - Tool to directly patch container images given the vulnerability scanning results * * @domain `project-copacetic.github.io` * @programs `copa` * @version `0.11.1` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install copa` * @name `copa` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.copa * // Or access via domain * const samePkg = pantry.projectcopaceticgithubio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "copa" * console.log(pkg.description) // "Tool to directly patch container images given t..." * console.log(pkg.programs) // ["copa"] * console.log(pkg.versions[0]) // "0.11.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/project-copacetic-github-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const copaPackage: { /** * The display name of this package. */ name: 'copa'; /** * The canonical domain name for this package. */ domain: 'project-copacetic.github.io'; /** * Brief description of what this package does. */ description: 'Tool to directly patch container images given the vulnerability scanning results'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/project-copacetic.github.io/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/project-copacetic/copacetic'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install copa'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['copa']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.11.1', '0.11.0', '0.10.0', '0.9.0', '0.8.0', '0.7.0', '0.6.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) copa -- $SHELL -i'; launchpadInstallCommand: 'launchpad install copa' }; export type CopaPackage = typeof copaPackage