UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.44 kB
/** * **shellcheck** - ShellCheck, a static analysis tool for shell scripts * * @domain `shellcheck.net` * @programs `shellcheck` * @version `0.11.0` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install shellcheck` * @name `shellcheck` * @dependencies `sourceware.org/libffi@3` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.shellcheck * // Or access via domain * const samePkg = pantry.shellchecknet * console.log(pkg === samePkg) // true * console.log(pkg.name) // "shellcheck" * console.log(pkg.description) // "ShellCheck, a static analysis tool for shell sc..." * console.log(pkg.programs) // ["shellcheck"] * console.log(pkg.versions[0]) // "0.11.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/shellcheck-net.md * @see https://ts-pkgx.netlify.app/usage */ export declare const shellcheckPackage: { /** * The display name of this package. */ name: 'shellcheck'; /** * The canonical domain name for this package. */ domain: 'shellcheck.net'; /** * Brief description of what this package does. */ description: 'ShellCheck, a static analysis tool for shell scripts'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/shellcheck.net/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install shellcheck'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['shellcheck']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['sourceware.org/libffi@3']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.11.0', '0.10.0', '0.9.0', '0.8.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) shellcheck -- $SHELL -i'; launchpadInstallCommand: 'launchpad install shellcheck' }; export type ShellcheckPackage = typeof shellcheckPackage