UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

67 lines 2.53 kB
/** * **github.com/libsixel/libsixel** - Mirror of "sixel" original version (kmiya's sixel). The origin of libsixel. * * @domain `github.com/libsixel/libsixel` * @programs `img2sixel`, `sixel2png`, `libsixel-config` * @version `1.10.3` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/libsixel/libsixel` * @dependencies `libjpeg-turbo.org`, `libpng.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomlibsixellibsixel * console.log(pkg.name) // "github.com/libsixel/libsixel" * console.log(pkg.description) // "Mirror of "sixel" original version (kmiya's six..." * console.log(pkg.programs) // ["img2sixel", "sixel2png", ...] * console.log(pkg.versions[0]) // "1.10.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/libsixel/libsixel.md * @see https://ts-pkgx.netlify.app/usage */ export declare const githubcomlibsixellibsixelPackage: { /** * The display name of this package. */ name: 'github.com/libsixel/libsixel'; /** * The canonical domain name for this package. */ domain: 'github.com/libsixel/libsixel'; /** * Brief description of what this package does. */ description: 'Mirror of "sixel" original version (kmiya\'s sixel). The origin of libsixel.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/libsixel/libsixel/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/libsixel/libsixel'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['img2sixel', 'sixel2png', 'libsixel-config']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['libjpeg-turbo.org', 'libpng.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.10.3']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/libsixel/libsixel -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/libsixel/libsixel' }; export type GithubcomlibsixellibsixelPackage = typeof githubcomlibsixellibsixelPackage