UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.36 kB
/** * **gif2rgb** - Library and utilities for processing GIFs * * @domain `giflib.sourceforge.io` * @programs `gif2rgb`, `gifbuild`, `gifclrmp`, `giffix`, `giftext`, ... (+1 more) * @version `5.2.2` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install gif2rgb` * @name `gif2rgb` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.gif2rgb * // Or access via domain * const samePkg = pantry.giflibsourceforgeio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "gif2rgb" * console.log(pkg.description) // "Library and utilities for processing GIFs" * console.log(pkg.programs) // ["gif2rgb", "gifbuild", ...] * console.log(pkg.versions[0]) // "5.2.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/giflib-sourceforge-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gif2rgbPackage: { /** * The display name of this package. */ name: 'gif2rgb'; /** * The canonical domain name for this package. */ domain: 'giflib.sourceforge.io'; /** * Brief description of what this package does. */ description: 'Library and utilities for processing GIFs'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/giflib.sourceforge.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 gif2rgb'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gif2rgb', 'gifbuild', 'gifclrmp', 'giffix', 'giftext', 'giftool']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.2.2', '5.2.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +giflib.sourceforge.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gif2rgb' }; export type Gif2rgbPackage = typeof gif2rgbPackage