/** * **zoxide** - Shell extension to navigate your filesystem faster * * @domain `crates.io/zoxide` * @programs `zoxide` * @version `0.9.8` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install crates.io/zoxide` * @homepage https://crates.io/crates/zoxide * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesiozoxide * console.log(pkg.name) // "zoxide" * console.log(pkg.description) // "Shell extension to navigate your filesystem faster" * console.log(pkg.programs) // ["zoxide"] * console.log(pkg.versions[0]) // "0.9.8" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/zoxide.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cratesiozoxidePackage: { /** * The display name of this package. */ name: 'zoxide'; /** * The canonical domain name for this package. */ domain: 'crates.io/zoxide'; /** * Brief description of what this package does. */ description: 'Shell extension to navigate your filesystem faster'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/zoxide/package.yml'; homepageUrl: 'https://crates.io/crates/zoxide'; githubUrl: 'https://github.com/ajeetdsouza/zoxide'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/zoxide'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/zoxide -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/zoxide'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['zoxide']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.9.8', '0.9.7', '0.9.6', '0.9.5', '0.9.4', '0.9.3', '0.9.2', '0.9.1', '0.9.0']; aliases: readonly [] }; export type CratesiozoxidePackage = typeof cratesiozoxidePackage