UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.48 kB
/** * **tiff** - TIFF library and utilities * * @domain `simplesystems.org/libtiff` * @programs `tiffcp`, `tiffdump`, `tiffinfo`, `tiffset`, `tiffsplit` * @version `4.7.0` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install +simplesystems.org/libtiff -- $SHELL -i` * @aliases `tiff` * @dependencies `facebook.com/zstd^1`, `libjpeg-turbo.org^2`, `zlib.net^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.tiff * // Or access via domain * const samePkg = pantry.simplesystemsorglibtiff * console.log(pkg === samePkg) // true * console.log(pkg.name) // "libtiff" * console.log(pkg.description) // "TIFF library and utilities" * console.log(pkg.programs) // ["tiffcp", "tiffdump", ...] * console.log(pkg.versions[0]) // "4.7.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/simplesystems-org/libtiff.md * @see https://ts-pkgx.netlify.app/usage */ export declare const tiffPackage: { /** * The display name of this package. */ name: 'libtiff'; /** * The canonical domain name for this package. */ domain: 'simplesystems.org/libtiff'; /** * Brief description of what this package does. */ description: 'TIFF library and utilities'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/simplesystems.org/libtiff/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +simplesystems.org/libtiff -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['tiffcp', 'tiffdump', 'tiffinfo', 'tiffset', 'tiffsplit']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['facebook.com/zstd^1', 'libjpeg-turbo.org^2', 'zlib.net^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.7.0', '4.6.0', '4.5.1', '4.5.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['tiff'] }; export type TiffPackage = typeof tiffPackage