UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.31 kB
/** * **rexi** - Terminal UI for Regex Testing * * @domain `github.com/royreznik/rexi` * @programs `rexi` * @version `1.2.0` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install rexi` * @name `rexi` * @dependencies `pkgx.sh^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.rexi * // Or access via domain * const samePkg = pantry.githubcomroyreznikrexi * console.log(pkg === samePkg) // true * 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.0" (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/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install rexi'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['rexi']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['pkgx.sh^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.2.0', '1.1.4', '1.1.3', '1.1.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) rexi -- $SHELL -i'; launchpadInstallCommand: 'launchpad install rexi' }; export type RexiPackage = typeof rexiPackage