UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.14 kB
/** * **xplr** - A hackable, minimal, fast TUI file explorer * * @domain `xplr.dev` * @programs `xplr` * @version `1.0.1` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install xplr` * @name `xplr` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.xplr * // Or access via domain * const samePkg = pantry.xplrdev * console.log(pkg === samePkg) // true * console.log(pkg.name) // "xplr" * console.log(pkg.description) // "A hackable, minimal, fast TUI file explorer" * console.log(pkg.programs) // ["xplr"] * console.log(pkg.versions[0]) // "1.0.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/xplr-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const xplrPackage: { /** * The display name of this package. */ name: 'xplr'; /** * The canonical domain name for this package. */ domain: 'xplr.dev'; /** * Brief description of what this package does. */ description: 'A hackable, minimal, fast TUI file explorer'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/xplr.dev/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install xplr'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['xplr']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.0.1', '1.0.0', '0.21.10', '0.21.9', '0.21.8']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) xplr -- $SHELL -i'; launchpadInstallCommand: 'launchpad install xplr' }; export type XplrPackage = typeof xplrPackage