UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.56 kB
/** * **jasper** - Official Repository for the JasPer Image Coding Toolkit * * @domain `github.com/jasper-software/jasper` * @programs `jasper` * @version `4.2.8` (14 versions available) * @versions From newest version to oldest. * * @install `launchpad install jasper` * @name `jasper` * @dependencies `libjpeg-turbo.org^2` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.jasper * // Or access via domain * const samePkg = pantry.githubcomjaspersoftwarejasper * console.log(pkg === samePkg) // true * console.log(pkg.name) // "jasper" * console.log(pkg.description) // "Official Repository for the JasPer Image Coding..." * console.log(pkg.programs) // ["jasper"] * console.log(pkg.versions[0]) // "4.2.8" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/jasper-software/jasper.md * @see https://ts-pkgx.netlify.app/usage */ export declare const jasperPackage: { /** * The display name of this package. */ name: 'jasper'; /** * The canonical domain name for this package. */ domain: 'github.com/jasper-software/jasper'; /** * Brief description of what this package does. */ description: 'Official Repository for the JasPer Image Coding Toolkit'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/jasper-software/jasper/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install jasper'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['jasper']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['libjpeg-turbo.org^2']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.2.8', '4.2.7', '4.2.6', '4.2.5', '4.2.4', '4.2.3', '4.2.2', '4.2.1', '4.2.0', '4.1.2', '4.1.1', '4.1.0', '4.0.1', '4.0.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) jasper -- $SHELL -i'; launchpadInstallCommand: 'launchpad install jasper' }; export type JasperPackage = typeof jasperPackage