ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.3 kB
TypeScript
/**
* **hadolint** - Dockerfile linter, validate inline bash, written in Haskell
*
* @domain `github.com/hadolint/hadolint`
* @programs `hadolint`
* @version `2.12.0` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install hadolint`
* @name `hadolint`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.hadolint
* // Or access via domain
* const samePkg = pantry.githubcomhadolinthadolint
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "hadolint"
* console.log(pkg.description) // "Dockerfile linter, validate inline bash, writte..."
* console.log(pkg.programs) // ["hadolint"]
* console.log(pkg.versions[0]) // "2.12.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/hadolint/hadolint.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const hadolintPackage: {
/**
* The display name of this package.
*/
name: 'hadolint';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/hadolint/hadolint';
/**
* Brief description of what this package does.
*/
description: 'Dockerfile linter, validate inline bash, written in Haskell';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/hadolint/hadolint/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install hadolint';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['hadolint'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.12.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) hadolint -- $SHELL -i';
launchpadInstallCommand: 'launchpad install hadolint'
};
export type HadolintPackage = typeof hadolintPackage