UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.13 kB
/** * **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 zoxide` * @name `zoxide` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.zoxide * // Or access via domain * const samePkg = pantry.cratesiozoxide * console.log(pkg === samePkg) // true * 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 zoxidePackage: { /** * 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: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install zoxide'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['zoxide']; companions: readonly []; dependencies: 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']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type ZoxidePackage = typeof zoxidePackage