UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

68 lines 2.05 kB
/** * **unrar** - pkgx package * * @domain `rarlab.com` * @programs `unrar` * @version `7.1.7` (20 versions available) * @versions From newest version to oldest. * * @install `launchpad install unrar` * @aliases `unrar` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.unrar * // Or access via domain * const samePkg = pantry.rarlabcom * console.log(pkg === samePkg) // true * console.log(pkg.name) // "rarlab.com" * console.log(pkg.programs) // ["unrar"] * console.log(pkg.versions[0]) // "7.1.7" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/rarlab-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const unrarPackage: { /** * The display name of this package. */ name: 'rarlab.com'; /** * The canonical domain name for this package. */ domain: 'rarlab.com'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/rarlab.com/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install unrar'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['unrar']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['7.1.7', '7.1.6', '7.1.5', '7.1.4', '7.1.2', '7.1.1', '7.0.9', '7.0.8', '7.0.7', '7.0.6', '7.0.5', '7.0.4', '7.0.3', '7.0.2', '7.0.1', '6.2.12', '6.2.11', '6.2.10', '6.2.9', '6.2.8']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['unrar'] }; export type UnrarPackage = typeof unrarPackage