/** * **unxip** - A fast Xcode unarchiver * * @domain `github.com/saagarjha/unxip` * @programs `unxip` * @version `3.2.0` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/saagarjha/unxip` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomsaagarjhaunxip * console.log(pkg.name) // "unxip" * console.log(pkg.description) // "A fast Xcode unarchiver" * console.log(pkg.programs) // ["unxip"] * console.log(pkg.versions[0]) // "3.2.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/saagarjha/unxip.md * @see https://ts-pkgx.netlify.app/usage */ export declare const unxipPackage: { /** * The display name of this package. */ name: 'unxip'; /** * The canonical domain name for this package. */ domain: 'github.com/saagarjha/unxip'; /** * Brief description of what this package does. */ description: 'A fast Xcode unarchiver'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/saagarjha/unxip/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/saagarjha/unxip'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/saagarjha/unxip'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/saagarjha/unxip -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/saagarjha/unxip'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['unxip']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.2.0', '3.1.0', '3.0.0', '2.2.0', '2.1.0']; aliases: readonly [] }; export type UnxipPackage = typeof unxipPackage