UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

56 lines 1.79 kB
/** * **zlib.net** - A massively spiffy yet delicately unobtrusive compression library. * * @domain `zlib.net` * @version `1.3.1` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install zlib.net` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.zlibnet * console.log(pkg.name) // "zlib.net" * console.log(pkg.description) // "A massively spiffy yet delicately unobtrusive c..." * console.log(pkg.versions[0]) // "1.3.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/zlib-net.md * @see https://ts-pkgx.netlify.app/usage */ export declare const zlibnetPackage: { /** * The display name of this package. */ name: 'zlib.net'; /** * The canonical domain name for this package. */ domain: 'zlib.net'; /** * Brief description of what this package does. */ description: 'A massively spiffy yet delicately unobtrusive compression library.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/zlib.net/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install zlib.net'; programs: readonly []; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.3.1', '1.3.0', '1.2.13', '1.2.12']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +zlib.net -- $SHELL -i'; launchpadInstallCommand: 'launchpad install zlib.net' }; export type ZlibnetPackage = typeof zlibnetPackage