/** * **rg** - ripgrep recursively searches directories for a regex pattern while respecting your gitignore * * @domain `crates.io/ripgrep` * @programs `rg` * @version `15.1.0` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install crates.io/ripgrep` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesioripgrep * console.log(pkg.name) // "rg" * console.log(pkg.description) // "ripgrep recursively searches directories for a ..." * console.log(pkg.programs) // ["rg"] * console.log(pkg.versions[0]) // "15.1.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/ripgrep.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cratesioripgrepPackage: { /** * The display name of this package. */ name: 'rg'; /** * The canonical domain name for this package. */ domain: 'crates.io/ripgrep'; /** * Brief description of what this package does. */ description: 'ripgrep recursively searches directories for a regex pattern while respecting your gitignore'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/ripgrep/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/BurntSushi/ripgrep'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/ripgrep'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/ripgrep -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/ripgrep'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['rg']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['15.1.0', '15.0.0', '14.1.1', '14.1.0', '14.0.3', '14.0.2', '14.0.1', '14.0.0', '13.0.0']; aliases: readonly [] }; export type CratesioripgrepPackage = typeof cratesioripgrepPackage