ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.62 kB
TypeScript
/**
* **golangci-lint** - Fast linters runner for Go
*
* @domain `golangci-lint.run`
* @programs `golangci-lint`
* @version `2.1.6` (52 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install golangci-lint`
* @aliases `golangci-lint`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.golangcilint
* // Or access via domain
* const samePkg = pantry.golangcilintrun
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "golangci-lint.run"
* console.log(pkg.description) // "Fast linters runner for Go"
* console.log(pkg.programs) // ["golangci-lint"]
* console.log(pkg.versions[0]) // "2.1.6" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/golangci-lint-run.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const golangcilintPackage: {
/**
* The display name of this package.
*/
name: 'golangci-lint.run';
/**
* The canonical domain name for this package.
*/
domain: 'golangci-lint.run';
/**
* Brief description of what this package does.
*/
description: 'Fast linters runner for Go';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/golangci-lint.run/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install golangci-lint';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['golangci-lint'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.1.6', '2.1.5', '2.1.4', '2.1.3', '2.1.2', '2.1.1', '2.1.0', '2.0.2', '2.0.1', '2.0.0', '1.64.8', '1.64.7', '1.64.6', '1.64.5', '1.64.4', '1.64.3', '1.64.2', '1.63.4', '1.63.3', '1.63.2', '1.63.1', '1.63.0', '1.62.2', '1.62.0', '1.61.0', '1.60.3', '1.60.2', '1.60.1', '1.59.1', '1.59.0', '1.58.2', '1.58.1', '1.58.0', '1.57.2', '1.57.1', '1.57.0', '1.56.2', '1.56.1', '1.56.0', '1.55.2', '1.55.1', '1.55.0', '1.54.2', '1.54.1', '1.53.3', '1.53.2', '1.53.1', '1.53.0', '1.52.2', '1.52.1', '1.52.0', '1.51.2'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['golangci-lint']
};
export type GolangcilintPackage = typeof golangcilintPackage