UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.52 kB
/** * **libdeflate** - Heavily optimized library for DEFLATE/zlib/gzip compression and decompression * * @domain `github.com/ebiggers/libdeflate` * @programs `libdeflate-gzip`, `libdeflate-gunzip` * @version `1.24.0` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install libdeflate` * @name `libdeflate` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.libdeflate * // Or access via domain * const samePkg = pantry.githubcomebiggerslibdeflate * console.log(pkg === samePkg) // true * console.log(pkg.name) // "libdeflate" * console.log(pkg.description) // "Heavily optimized library for DEFLATE/zlib/gzip..." * console.log(pkg.programs) // ["libdeflate-gzip", "libdeflate-gunzip"] * console.log(pkg.versions[0]) // "1.24.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/ebiggers/libdeflate.md * @see https://ts-pkgx.netlify.app/usage */ export declare const libdeflatePackage: { /** * The display name of this package. */ name: 'libdeflate'; /** * The canonical domain name for this package. */ domain: 'github.com/ebiggers/libdeflate'; /** * Brief description of what this package does. */ description: 'Heavily optimized library for DEFLATE/zlib/gzip compression and decompression'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/ebiggers/libdeflate/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install libdeflate'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['libdeflate-gzip', 'libdeflate-gunzip']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.24.0', '1.23.0', '1.22.0', '1.21.0', '1.20.0', '1.19.0']; /** * 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/ebiggers/libdeflate -- $SHELL -i'; launchpadInstallCommand: 'launchpad install libdeflate' }; export type LibdeflatePackage = typeof libdeflatePackage