UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

78 lines 2.5 kB
/** * **pod2man** - pkgx package * * @domain `eyrie.org/eagle/podlators` * @programs `pod2man`, `pod2text` * @version `5.1.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install +eyrie.org/eagle/podlators -- $SHELL -i` * @aliases `pod2man` * @dependencies `perl.org^5` * @companions `PERL5LIB^{{prefix}}/lib/perl5:{{prefix}}/libexec/lib/perl5:$PERL5LIB` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.pod2man * // Or access via domain * const samePkg = pantry.eyrieorgeaglepodlators * console.log(pkg === samePkg) // true * console.log(pkg.name) // "podlators" * console.log(pkg.programs) // ["pod2man", "pod2text"] * console.log(pkg.versions[0]) // "5.1.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/eyrie-org/eagle/podlators.md * @see https://ts-pkgx.netlify.app/usage */ export declare const pod2manPackage: { /** * The display name of this package. */ name: 'podlators'; /** * The canonical domain name for this package. */ domain: 'eyrie.org/eagle/podlators'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/eyrie.org/eagle/podlators/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +eyrie.org/eagle/podlators -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['pod2man', 'pod2text']; /** * Related packages that work well with this package. * Consider installing these for enhanced functionality. */ companions: readonly ['PERL5LIB^{{prefix}}/lib/perl5:{{prefix}}/libexec/lib/perl5:$PERL5LIB']; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['perl.org^5']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.1.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['pod2man'] }; export type Pod2manPackage = typeof pod2manPackage