UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 3.1 kB
/** * **vips** - A fast image processing library with low memory needs. * * @domain `libvips.org` * @programs `vips`, `vipsedit`, `vipsheader`, `vipsprofile`, `vipsthumbnail` * @version `8.17.0` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install +libvips.org -- $SHELL -i` * @aliases `vips` * @dependencies `mozilla.org/mozjpeg`, `cairographics.org`, `heasarc.gsfc.nasa.gov/cfitsio`, ... (+24 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.vips * // Or access via domain * const samePkg = pantry.libvipsorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "libvips.org" * console.log(pkg.description) // "A fast image processing library with low memory..." * console.log(pkg.programs) // ["vips", "vipsedit", ...] * console.log(pkg.versions[0]) // "8.17.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/libvips-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const vipsPackage: { /** * The display name of this package. */ name: 'libvips.org'; /** * The canonical domain name for this package. */ domain: 'libvips.org'; /** * Brief description of what this package does. */ description: 'A fast image processing library with low memory needs.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/libvips.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +libvips.org -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['vips', 'vipsedit', 'vipsheader', 'vipsprofile', 'vipsthumbnail']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['mozilla.org/mozjpeg', 'cairographics.org', 'heasarc.gsfc.nasa.gov/cfitsio', 'github.com/dloebl/cgif', 'fftw.org', 'freedesktop.org/fontconfig', 'gnu.org/gettext', 'gnome.org/glib', 'graphicsmagick.org', 'jpeg.org/jpegxl', 'libexif.github.io', 'gnome.org/libgsf', 'github.com/strukturag/libheif', 'pngquant.org/lib', 'matio.sourceforge.io', 'gnome.org/librsvg', 'libspng.org', 'simplesystems.org/libtiff', 'littlecms.com', 'openexr.com', 'openjpeg.org', 'gstreamer.freedesktop.org/orc', 'gnome.org/pango', 'poppler.freedesktop.org', 'google.com/webp', 'libexpat.github.io', 'zlib.net']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['8.17.0', '8.16.1', '8.16.0', '8.15.5', '8.15.3', '8.15.2', '8.15.1', '8.15.0', '8.14.5']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['vips'] }; export type VipsPackage = typeof vipsPackage