UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.26 kB
/** * **checkmake** - experimental linter/analyzer for Makefiles * * @domain `github.com/mrtazz/checkmake` * @programs `checkmake` * @version `0.2.2` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install checkmake` * @name `checkmake` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.checkmake * // Or access via domain * const samePkg = pantry.githubcommrtazzcheckmake * console.log(pkg === samePkg) // true * console.log(pkg.name) // "checkmake" * console.log(pkg.description) // "experimental linter/analyzer for Makefiles" * console.log(pkg.programs) // ["checkmake"] * console.log(pkg.versions[0]) // "0.2.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/mrtazz/checkmake.md * @see https://ts-pkgx.netlify.app/usage */ export declare const checkmakePackage: { /** * The display name of this package. */ name: 'checkmake'; /** * The canonical domain name for this package. */ domain: 'github.com/mrtazz/checkmake'; /** * Brief description of what this package does. */ description: 'experimental linter/analyzer for Makefiles'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/mrtazz/checkmake/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install checkmake'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['checkmake']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.2.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) checkmake -- $SHELL -i'; launchpadInstallCommand: 'launchpad install checkmake' }; export type CheckmakePackage = typeof checkmakePackage