UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.38 kB
/** * **par2** - Parchive: Parity Archive Volume Set for data recovery * * @domain `github.com/Parchive/par2cmdline` * @programs `par2`, `par2create`, `par2verify`, `par2repair` * @version `1.0.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install par2` * @name `par2` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.par2 * // Or access via domain * const samePkg = pantry.githubcomparchivepar2cmdline * console.log(pkg === samePkg) // true * console.log(pkg.name) // "par2" * console.log(pkg.description) // "Parchive: Parity Archive Volume Set for data re..." * console.log(pkg.programs) // ["par2", "par2create", ...] * console.log(pkg.versions[0]) // "1.0.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/Parchive/par2cmdline.md * @see https://ts-pkgx.netlify.app/usage */ export declare const par2Package: { /** * The display name of this package. */ name: 'par2'; /** * The canonical domain name for this package. */ domain: 'github.com/Parchive/par2cmdline'; /** * Brief description of what this package does. */ description: 'Parchive: Parity Archive Volume Set for data recovery'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/Parchive/par2cmdline/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install par2'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['par2', 'par2create', 'par2verify', 'par2repair']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.0.0', '0.8.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/Parchive/par2cmdline -- $SHELL -i'; launchpadInstallCommand: 'launchpad install par2' }; export type Par2Package = typeof par2Package