UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.52 kB
/** * **gm** - Image processing tools collection * * @domain `graphicsmagick.org` * @programs `gm` * @version `1.3.45` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install gm` * @aliases `gm` * @dependencies `freetype.org`, `github.com/jasper-software/jasper`, `libjpeg-turbo.org`, ... (+9 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.gm * // Or access via domain * const samePkg = pantry.graphicsmagickorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "graphicsmagick.org" * console.log(pkg.description) // "Image processing tools collection" * console.log(pkg.programs) // ["gm"] * console.log(pkg.versions[0]) // "1.3.45" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/graphicsmagick-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gmPackage: { /** * The display name of this package. */ name: 'graphicsmagick.org'; /** * The canonical domain name for this package. */ domain: 'graphicsmagick.org'; /** * Brief description of what this package does. */ description: 'Image processing tools collection'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/graphicsmagick.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 gm'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gm']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['freetype.org', 'github.com/jasper-software/jasper', 'libjpeg-turbo.org', 'jpeg.org/jpegxl', 'libpng.org', 'simplesystems.org/libtiff', 'gnu.org/libtool', 'littlecms.com>=2.0', 'google.com/webp', 'sourceware.org/bzip2', 'gnome.org/libxml2', 'zlib.net']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.3.45', '1.3.44', '1.3.43', '1.3.42', '1.3.40']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['gm'] }; export type GmPackage = typeof gmPackage