/** * **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 crates.io/exa` * @homepage https://the.exa.website/ * @dependencies `darwin:zlib.net^1` (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesioexa * 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 cratesioexaPackage: { /** * 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: 'https://the.exa.website/'; githubUrl: 'https://github.com/ogham/exa'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/exa'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/exa -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/exa'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['exa']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['darwin:zlib.net^1']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.10.1']; aliases: readonly [] }; export type CratesioexaPackage = typeof cratesioexaPackage