UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

54 lines 1.7 kB
/** * **cgif** - GIF encoder written in C * * @domain `github.com/dloebl/cgif` * @version `0.5.0` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install +github.com/dloebl/cgif -- $SHELL -i` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomdloeblcgif * console.log(pkg.name) // "cgif" * console.log(pkg.description) // "GIF encoder written in C" * console.log(pkg.versions[0]) // "0.5.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/dloebl/cgif.md * @see https://ts-pkgx.netlify.app/usage */ export declare const githubcomdloeblcgifPackage: { /** * The display name of this package. */ name: 'cgif'; /** * The canonical domain name for this package. */ domain: 'github.com/dloebl/cgif'; /** * Brief description of what this package does. */ description: 'GIF encoder written in C'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/dloebl/cgif/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +github.com/dloebl/cgif -- $SHELL -i'; programs: readonly []; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.5.0', '0.4.1', '0.4.0', '0.3.2', '0.3.1']; aliases: readonly [] }; export type GithubcomdloeblcgifPackage = typeof githubcomdloeblcgifPackage