UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.12 kB
/** * **fd** - A simple, fast and user-friendly alternative to 'find' * * @domain `crates.io/fd-find` * @programs `fd` * @version `10.2.0` (8 versions available) * @versions From newest version to oldest. * * @install `launchpad install fd` * @aliases `fd` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.fd * // Or access via domain * const samePkg = pantry.cratesiofdfind * console.log(pkg === samePkg) // true * console.log(pkg.name) // "fd-find" * console.log(pkg.description) // "A simple, fast and user-friendly alternative to..." * console.log(pkg.programs) // ["fd"] * console.log(pkg.versions[0]) // "10.2.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/fd-find.md * @see https://ts-pkgx.netlify.app/usage */ export declare const fdPackage: { /** * The display name of this package. */ name: 'fd-find'; /** * The canonical domain name for this package. */ domain: 'crates.io/fd-find'; /** * Brief description of what this package does. */ description: 'A simple, fast and user-friendly alternative to \'find\''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/fd-find/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install fd'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['fd']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['10.2.0', '10.1.0', '10.0.0', '9.0.0', '8.7.1', '8.7.0', '8.6.0', '8.5.3']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['fd'] }; export type FdPackage = typeof fdPackage