UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.85 kB
/** * **grype** - A vulnerability scanner for container images and filesystems * * @domain `github.com/anchore/grype` * @programs `grype` * @version `0.98.0` (62 versions available) * @versions From newest version to oldest. * * @install `launchpad install grype` * @name `grype` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.grype * // Or access via domain * const samePkg = pantry.githubcomanchoregrype * console.log(pkg === samePkg) // true * console.log(pkg.name) // "grype" * console.log(pkg.description) // "A vulnerability scanner for container images an..." * console.log(pkg.programs) // ["grype"] * console.log(pkg.versions[0]) // "0.98.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/anchore/grype.md * @see https://ts-pkgx.netlify.app/usage */ export declare const grypePackage: { /** * The display name of this package. */ name: 'grype'; /** * The canonical domain name for this package. */ domain: 'github.com/anchore/grype'; /** * Brief description of what this package does. */ description: 'A vulnerability scanner for container images and filesystems'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/anchore/grype/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install grype'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['grype']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.98.0', '0.97.2', '0.97.1', '0.97.0', '0.96.1', '0.96.0', '0.95.0', '0.94.0', '0.93.0', '0.92.2', '0.92.1', '0.92.0', '0.91.2', '0.91.1', '0.91.0', '0.90.0', '0.89.1', '0.89.0', '0.88.0', '0.87.0', '0.86.1', '0.86.0', '0.85.0', '0.84.0', '0.83.0', '0.82.2', '0.82.1', '0.82.0', '0.81.0', '0.80.2', '0.80.1', '0.80.0', '0.79.6', '0.79.5', '0.79.4', '0.79.3', '0.79.2', '0.79.1', '0.79.0', '0.78.0', '0.77.4', '0.77.3', '0.77.2', '0.77.1', '0.77.0', '0.76.0', '0.75.0', '0.74.7', '0.74.6', '0.74.5', '0.74.4', '0.74.3', '0.74.2', '0.74.1', '0.74.0', '0.73.5', '0.73.4', '0.73.3', '0.73.2', '0.73.1', '0.73.0', '0.72.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) grype -- $SHELL -i'; launchpadInstallCommand: 'launchpad install grype' }; export type GrypePackage = typeof grypePackage