UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.27 kB
/** * **upx** - UPX - the Ultimate Packer for eXecutables * * @domain `upx.github.io` * @programs `upx` * @version `5.0.2` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install upx` * @name `upx` * @dependencies `zlib.net` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.upx * // Or access via domain * const samePkg = pantry.upxgithubio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "upx" * console.log(pkg.description) // "UPX - the Ultimate Packer for eXecutables" * console.log(pkg.programs) // ["upx"] * console.log(pkg.versions[0]) // "5.0.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/upx-github-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const upxPackage: { /** * The display name of this package. */ name: 'upx'; /** * The canonical domain name for this package. */ domain: 'upx.github.io'; /** * Brief description of what this package does. */ description: 'UPX - the Ultimate Packer for eXecutables'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/upx.github.io/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install upx'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['upx']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['zlib.net']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.0.2', '5.0.1', '5.0.0', '4.2.4']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) upx -- $SHELL -i'; launchpadInstallCommand: 'launchpad install upx' }; export type UpxPackage = typeof upxPackage