UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.58 kB
/** * **rga** - rga: ripgrep, but also search in PDFs, E-Books, Office documents, zip, tar.gz, etc. * * @domain `crates.io/ripgrep-all` * @programs `rga`, `rga-fzf`, `rga-fzf-open`, `rga-preproc` * @version `0.10.9` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install +crates.io/ripgrep-all -- $SHELL -i` * @aliases `rga` * @companions `crates.io/ripgrep`, `github.com/junegunn/fzf` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.rga * // Or access via domain * const samePkg = pantry.cratesioripgrepall * console.log(pkg === samePkg) // true * console.log(pkg.name) // "ripgrep-all" * console.log(pkg.description) // "rga: ripgrep, but also search in PDFs, E-Books,..." * console.log(pkg.programs) // ["rga", "rga-fzf", ...] * console.log(pkg.versions[0]) // "0.10.9" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/ripgrep-all.md * @see https://ts-pkgx.netlify.app/usage */ export declare const rgaPackage: { /** * The display name of this package. */ name: 'ripgrep-all'; /** * The canonical domain name for this package. */ domain: 'crates.io/ripgrep-all'; /** * Brief description of what this package does. */ description: 'rga: ripgrep, but also search in PDFs, E-Books, Office documents, zip, tar.gz, etc.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/ripgrep-all/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +crates.io/ripgrep-all -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['rga', 'rga-fzf', 'rga-fzf-open', 'rga-preproc']; /** * Related packages that work well with this package. * Consider installing these for enhanced functionality. */ companions: readonly ['crates.io/ripgrep', 'github.com/junegunn/fzf']; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.10.9', '0.10.8', '0.10.7', '0.10.6']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['rga'] }; export type RgaPackage = typeof rgaPackage