ts-pkgx
Version:
A library & CLI for managing packages
60 lines • 1.98 kB
TypeScript
/**
* **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 -- $SHELL -i`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.infoziporgunzip
* 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 infoziporgunzipPackage: {
/**
* 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: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +info-zip.org/unzip -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['funzip', 'unzip', 'unzipsfx', 'zipgrep', 'zipinfo'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['6.0.0'];
aliases: readonly []
};
export type InfoziporgunzipPackage = typeof infoziporgunzipPackage