/** * **unzip** - Extraction utility for .zip compressed archives * * @domain `info-zip.org/unzip` * @programs `funzip`, `unzip`, `unzipsfx`, `zipgrep`, `zipinfo` * @version `6.0.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install info-zip.org/unzip` * @name `unzip` * @homepage https://infozip.sourceforge.net/UnZip.html * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.unzip * // Or access via domain * const samePkg = pantry.infoziporgunzip * console.log(pkg === samePkg) // true * console.log(pkg.name) // "unzip" * console.log(pkg.description) // "Extraction utility for .zip compressed archives" * console.log(pkg.programs) // ["funzip", "unzip", ...] * console.log(pkg.versions[0]) // "6.0.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/info-zip-org/unzip.md * @see https://ts-pkgx.netlify.app/usage */ export declare const unzipPackage: { /** * The display name of this package. */ name: 'unzip'; /** * The canonical domain name for this package. */ domain: 'info-zip.org/unzip'; /** * Brief description of what this package does. */ description: 'Extraction utility for .zip compressed archives'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/info-zip.org/unzip/package.yml'; homepageUrl: 'https://infozip.sourceforge.net/UnZip.html'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install info-zip.org/unzip'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +info-zip.org/unzip -- $SHELL -i'; launchpadInstallCommand: 'launchpad install info-zip.org/unzip'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['funzip', 'unzip', 'unzipsfx', 'zipgrep', 'zipinfo']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['6.0.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type UnzipPackage = typeof unzipPackage