ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.29 kB
TypeScript
/**
* **gif** - 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 +giflib.sourceforge.io -- $SHELL -i`
* @aliases `gif`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.gif
* // Or access via domain
* const samePkg = pantry.giflibsourceforgeio
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "giflib.sourceforge.io"
* 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 gifPackage: {
/**
* The display name of this package.
*/
name: 'giflib.sourceforge.io';
/**
* 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 +giflib.sourceforge.io -- $SHELL -i';
/**
* 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 ['gif']
};
export type GifPackage = typeof gifPackage