UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.23 kB
/** * **caesiumclt** - Caesium Command Line Tools - Lossy/lossless image compression tool * * @domain `saerasoft.com/caesium` * @programs `caesiumclt` * @version `0.21.0` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install caesiumclt` * @aliases `caesiumclt` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.caesiumclt * // Or access via domain * const samePkg = pantry.saerasoftcomcaesium * console.log(pkg === samePkg) // true * console.log(pkg.name) // "caesium" * console.log(pkg.description) // "Caesium Command Line Tools - Lossy/lossless ima..." * console.log(pkg.programs) // ["caesiumclt"] * console.log(pkg.versions[0]) // "0.21.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/saerasoft-com/caesium.md * @see https://ts-pkgx.netlify.app/usage */ export declare const caesiumcltPackage: { /** * The display name of this package. */ name: 'caesium'; /** * The canonical domain name for this package. */ domain: 'saerasoft.com/caesium'; /** * Brief description of what this package does. */ description: 'Caesium Command Line Tools - Lossy/lossless image compression tool'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/saerasoft.com/caesium/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install caesiumclt'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['caesiumclt']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.21.0', '0.20.0', '0.19.3', '0.19.2', '0.19.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['caesiumclt'] }; export type CaesiumcltPackage = typeof caesiumcltPackage