UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

75 lines 2.26 kB
/** * **exa** - A modern replacement for ‘ls’. * * @domain `crates.io/exa` * @programs `exa` * @version `0.10.1` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install exa` * @name `exa` * @dependencies `darwin:zlib.net^1` (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.exa * // Or access via domain * const samePkg = pantry.cratesioexa * console.log(pkg === samePkg) // true * console.log(pkg.name) // "exa" * console.log(pkg.description) // "A modern replacement for ‘ls’." * console.log(pkg.programs) // ["exa"] * console.log(pkg.versions[0]) // "0.10.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/exa.md * @see https://ts-pkgx.netlify.app/usage */ export declare const exaPackage: { /** * The display name of this package. */ name: 'exa'; /** * The canonical domain name for this package. */ domain: 'crates.io/exa'; /** * Brief description of what this package does. */ description: 'A modern replacement for ‘ls’.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/exa/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install exa'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['exa']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['darwin:zlib.net^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.10.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type ExaPackage = typeof exaPackage