UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.12 kB
/** * **dssim** - Image similarity comparison simulating human perception (multiscale SSIM in Rust) * * @domain `kornel.ski/dssim` * @programs `dssim` * @version `3.4.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install dssim` * @name `dssim` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.dssim * // Or access via domain * const samePkg = pantry.kornelskidssim * console.log(pkg === samePkg) // true * console.log(pkg.name) // "dssim" * console.log(pkg.description) // "Image similarity comparison simulating human pe..." * console.log(pkg.programs) // ["dssim"] * console.log(pkg.versions[0]) // "3.4.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/kornel-ski/dssim.md * @see https://ts-pkgx.netlify.app/usage */ export declare const dssimPackage: { /** * The display name of this package. */ name: 'dssim'; /** * The canonical domain name for this package. */ domain: 'kornel.ski/dssim'; /** * Brief description of what this package does. */ description: 'Image similarity comparison simulating human perception (multiscale SSIM in Rust)'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/kornel.ski/dssim/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install dssim'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['dssim']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.4.0', '3.2.3']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type DssimPackage = typeof dssimPackage