ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.42 kB
TypeScript
/**
* **buildifier** - Format bazel BUILD files with a standard convention
*
* @domain `github.com/bazelbuild/buildtools`
* @programs `buildifier`
* @version `8.2.1` (11 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install buildifier`
* @name `buildifier`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.buildifier
* // Or access via domain
* const samePkg = pantry.githubcombazelbuildbuildtools
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "buildifier"
* console.log(pkg.description) // "Format bazel BUILD files with a standard conven..."
* console.log(pkg.programs) // ["buildifier"]
* console.log(pkg.versions[0]) // "8.2.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/bazelbuild/buildtools.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const buildifierPackage: {
/**
* The display name of this package.
*/
name: 'buildifier';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/bazelbuild/buildtools';
/**
* Brief description of what this package does.
*/
description: 'Format bazel BUILD files with a standard convention';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/bazelbuild/buildtools/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install buildifier';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['buildifier'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['8.2.1', '8.2.0', '8.0.3', '8.0.2', '8.0.1', '8.0.0', '7.3.1', '7.1.2', '7.1.1', '7.1.0', '6.4.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) buildifier -- $SHELL -i';
launchpadInstallCommand: 'launchpad install buildifier'
};
export type BuildifierPackage = typeof buildifierPackage