ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.25 kB
TypeScript
/**
* **govulncheck** - [mirror] the database client and tools for the Go vulnerability database
*
* @domain `go.dev/govulncheck`
* @programs `govulncheck`
* @version `1.1.4` (9 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install govulncheck`
* @name `govulncheck`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.govulncheck
* // Or access via domain
* const samePkg = pantry.godevgovulncheck
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "govulncheck"
* console.log(pkg.description) // "[mirror] the database client and tools for the ..."
* console.log(pkg.programs) // ["govulncheck"]
* console.log(pkg.versions[0]) // "1.1.4" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/go-dev/govulncheck.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const govulncheckPackage: {
/**
* The display name of this package.
*/
name: 'govulncheck';
/**
* The canonical domain name for this package.
*/
domain: 'go.dev/govulncheck';
/**
* Brief description of what this package does.
*/
description: '[mirror] the database client and tools for the Go vulnerability database';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/go.dev/govulncheck/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install govulncheck';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['govulncheck'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.1.4', '1.1.3', '1.1.2', '1.1.1', '1.1.0', '1.0.4', '1.0.3', '1.0.2', '1.0.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type GovulncheckPackage = typeof govulncheckPackage