UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

67 lines 2.41 kB
/** * **facebook.com/zstd** - Zstandard - Fast real-time compression algorithm * * @domain `facebook.com/zstd` * @programs `pzstd`, `unzstd`, `zstd`, `zstdcat`, `zstdgrep`, ... (+2 more) * @version `1.5.7` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install facebook.com/zstd` * @dependencies `lz4.org^1`, `tukaani.org/xz^5`, `zlib.net^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.facebookcomzstd * console.log(pkg.name) // "facebook.com/zstd" * console.log(pkg.description) // "Zstandard - Fast real-time compression algorithm" * console.log(pkg.programs) // ["pzstd", "unzstd", ...] * console.log(pkg.versions[0]) // "1.5.7" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/facebook-com/zstd.md * @see https://ts-pkgx.netlify.app/usage */ export declare const facebookcomzstdPackage: { /** * The display name of this package. */ name: 'facebook.com/zstd'; /** * The canonical domain name for this package. */ domain: 'facebook.com/zstd'; /** * Brief description of what this package does. */ description: 'Zstandard - Fast real-time compression algorithm'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/facebook.com/zstd/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install facebook.com/zstd'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['pzstd', 'unzstd', 'zstd', 'zstdcat', 'zstdgrep', 'zstdless', 'zstdmt']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['lz4.org^1', 'tukaani.org/xz^5', 'zlib.net^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.5.7', '1.5.6', '1.5.5', '1.5.4', '1.5.2']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +facebook.com/zstd -- $SHELL -i'; launchpadInstallCommand: 'launchpad install facebook.com/zstd' }; export type FacebookcomzstdPackage = typeof facebookcomzstdPackage