UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 1.98 kB
/** * **lz4** - Extremely Fast Compression algorithm * * @domain `lz4.org` * @programs `lz4` * @version `1.10.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install lz4` * @aliases `lz4` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.lz4 * // Or access via domain * const samePkg = pantry.lz4org * console.log(pkg === samePkg) // true * console.log(pkg.name) // "lz4.org" * console.log(pkg.description) // "Extremely Fast Compression algorithm" * console.log(pkg.programs) // ["lz4"] * console.log(pkg.versions[0]) // "1.10.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/lz4-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const lz4Package: { /** * The display name of this package. */ name: 'lz4.org'; /** * The canonical domain name for this package. */ domain: 'lz4.org'; /** * Brief description of what this package does. */ description: 'Extremely Fast Compression algorithm'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/lz4.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install lz4'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['lz4']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.10.0', '1.9.4']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['lz4'] }; export type Lz4Package = typeof lz4Package