UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.29 kB
/** * **bat** - Clone of cat(1) with syntax highlighting and Git integration * * @domain `crates.io/bat` * @programs `bat` * @version `0.25.0` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install bat` * @name `bat` * @dependencies `zlib.net^1`, `libgit2.org~1.7 # links to libgit2.so.1.7` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.bat * // Or access via domain * const samePkg = pantry.cratesiobat * console.log(pkg === samePkg) // true * console.log(pkg.name) // "bat" * console.log(pkg.description) // "Clone of cat(1) with syntax highlighting and Gi..." * console.log(pkg.programs) // ["bat"] * console.log(pkg.versions[0]) // "0.25.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/bat.md * @see https://ts-pkgx.netlify.app/usage */ export declare const batPackage: { /** * The display name of this package. */ name: 'bat'; /** * The canonical domain name for this package. */ domain: 'crates.io/bat'; /** * Brief description of what this package does. */ description: 'Clone of cat(1) with syntax highlighting and Git integration'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/bat/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install bat'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['bat']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['zlib.net^1', 'libgit2.org~1.7 # links to libgit2.so.1.7']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.25.0', '0.24.0', '0.23.0', '0.22.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type BatPackage = typeof batPackage