UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

59 lines 2.15 kB
/** * **re2** - RE2 is a fast, safe, thread-friendly alternative to backtracking regular expression engines like those used in PCRE, Perl, and Python. It is a C++ library. * * @domain `github.com/google/re2` * @version `2024.7.2` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install +github.com/google/re2 -- $SHELL -i` * @dependencies `abseil.io^20250127` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomgooglere2 * console.log(pkg.name) // "re2" * console.log(pkg.description) // "RE2 is a fast, safe, thread-friendly alternativ..." * console.log(pkg.versions[0]) // "2024.7.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/google/re2.md * @see https://ts-pkgx.netlify.app/usage */ export declare const githubcomgooglere2Package: { /** * The display name of this package. */ name: 're2'; /** * The canonical domain name for this package. */ domain: 'github.com/google/re2'; /** * Brief description of what this package does. */ description: 'RE2 is a fast, safe, thread-friendly alternative to backtracking regular expression engines like those used in PCRE, Perl, and Python. It is a C++ library.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/google/re2/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +github.com/google/re2 -- $SHELL -i'; programs: readonly []; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['abseil.io^20250127']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2024.7.2', '2024.7.1', '2024.6.1', '2023.3.1']; aliases: readonly [] }; export type Githubcomgooglere2Package = typeof githubcomgooglere2Package