UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.14 kB
/** * **gifsicle** - Create, manipulate, and optimize GIF images and animations * * @domain `lcdf.org/gifsicle` * @programs `gifsicle` * @version `1.96.0` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install gifsicle` * @name `gifsicle` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.gifsicle * // Or access via domain * const samePkg = pantry.lcdforggifsicle * console.log(pkg === samePkg) // true * console.log(pkg.name) // "gifsicle" * console.log(pkg.description) // "Create, manipulate, and optimize GIF images and..." * console.log(pkg.programs) // ["gifsicle"] * console.log(pkg.versions[0]) // "1.96.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/lcdf-org/gifsicle.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gifsiclePackage: { /** * The display name of this package. */ name: 'gifsicle'; /** * The canonical domain name for this package. */ domain: 'lcdf.org/gifsicle'; /** * Brief description of what this package does. */ description: 'Create, manipulate, and optimize GIF images and animations'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/lcdf.org/gifsicle/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gifsicle'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gifsicle']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.96.0', '1.95.0', '1.94.0', '1.93.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type GifsiclePackage = typeof gifsiclePackage