/** * **rexi** - Terminal UI for Regex Testing * * @domain `github.com/royreznik/rexi` * @programs `rexi` * @version `1.2.1` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/royreznik/rexi` * @dependencies `pkgx.sh^1` * @buildDependencies `python.org@>=3.8` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomroyreznikrexi * console.log(pkg.name) // "rexi" * console.log(pkg.description) // "Terminal UI for Regex Testing" * console.log(pkg.programs) // ["rexi"] * console.log(pkg.versions[0]) // "1.2.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/royreznik/rexi.md * @see https://ts-pkgx.netlify.app/usage */ export declare const rexiPackage: { /** * The display name of this package. */ name: 'rexi'; /** * The canonical domain name for this package. */ domain: 'github.com/royreznik/rexi'; /** * Brief description of what this package does. */ description: 'Terminal UI for Regex Testing'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/royreznik/rexi/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/royreznik/rexi'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/royreznik/rexi'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/royreznik/rexi -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/royreznik/rexi'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['rexi']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['pkgx.sh^1']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['python.org@>=3.8']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.2.1', '1.2.0', '1.1.4', '1.1.3', '1.1.2']; aliases: readonly [] }; export type RexiPackage = typeof rexiPackage