UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

60 lines 2.31 kB
/** * **xz** - General-purpose data compression with high compression ratio * * @domain `tukaani.org/xz` * @programs `lzcat`, `lzcmp`, `lzdiff`, `lzegrep`, `lzfgrep`, ... (+18 more) * @version `5.8.1` (18 versions available) * @versions From newest version to oldest. * * @install `launchpad install +tukaani.org/xz -- $SHELL -i` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.tukaaniorgxz * console.log(pkg.name) // "xz" * console.log(pkg.description) // "General-purpose data compression with high comp..." * console.log(pkg.programs) // ["lzcat", "lzcmp", ...] * console.log(pkg.versions[0]) // "5.8.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/tukaani-org/xz.md * @see https://ts-pkgx.netlify.app/usage */ export declare const tukaaniorgxzPackage: { /** * The display name of this package. */ name: 'xz'; /** * The canonical domain name for this package. */ domain: 'tukaani.org/xz'; /** * Brief description of what this package does. */ description: 'General-purpose data compression with high compression ratio'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/tukaani.org/xz/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +tukaani.org/xz -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['lzcat', 'lzcmp', 'lzdiff', 'lzegrep', 'lzfgrep', 'lzgrep', 'lzless', 'lzma', 'lzmadec', 'lzmainfo', 'lzmore', 'unlzma', 'unxz', 'xz', 'xzcat', 'xzcmp', 'xzdec', 'xzdiff', 'xzegrep', 'xzfgrep', 'xzgrep', 'xzless', 'xzmore']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.8.1', '5.8.0', '5.6.4', '5.6.3', '5.6.2', '5.4.7', '5.4.6', '5.4.5', '5.4.4', '5.4.3', '5.4.2', '5.4.1', '5.4.0', '5.2.13', '5.2.12', '5.2.11', '5.2.10', '5.2.7']; aliases: readonly [] }; export type TukaaniorgxzPackage = typeof tukaaniorgxzPackage