ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.75 kB
TypeScript
/**
* **trivy** - Find vulnerabilities, misconfigurations, secrets, SBOM in containers, Kubernetes, code repositories, clouds and more
*
* @domain `aquasecurity.github.io/trivy`
* @programs `trivy`
* @version `0.63.0` (36 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install trivy`
* @name `trivy`
* @dependencies `curl.se/ca-certs`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.trivy
* // Or access via domain
* const samePkg = pantry.aquasecuritygithubiotrivy
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "trivy"
* console.log(pkg.description) // "Find vulnerabilities, misconfigurations, secret..."
* console.log(pkg.programs) // ["trivy"]
* console.log(pkg.versions[0]) // "0.63.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/aquasecurity-github-io/trivy.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const trivyPackage: {
/**
* The display name of this package.
*/
name: 'trivy';
/**
* The canonical domain name for this package.
*/
domain: 'aquasecurity.github.io/trivy';
/**
* Brief description of what this package does.
*/
description: 'Find vulnerabilities, misconfigurations, secrets, SBOM in containers, Kubernetes, code repositories, clouds and more';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/aquasecurity.github.io/trivy/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/aquasecurity/trivy';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install trivy';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['trivy'];
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 ['0.63.0', '0.62.1', '0.62.0', '0.61.1', '0.61.0', '0.60.0', '0.59.1', '0.59.0', '0.58.2', '0.58.1', '0.58.0', '0.57.1', '0.57.0', '0.56.2', '0.56.1', '0.56.0', '0.55.2', '0.55.1', '0.55.0', '0.54.1', '0.54.0', '0.53.0', '0.52.2', '0.52.1', '0.52.0', '0.51.4', '0.51.2', '0.51.1', '0.51.0', '0.50.4', '0.50.2', '0.50.1', '0.50.0', '0.49.1', '0.49.0', '0.48.3'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type TrivyPackage = typeof trivyPackage