UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.36 kB
/** * **xxhsum** - Extremely fast non-cryptographic hash algorithm * * @domain `github.com/Cyan4973/xxHash` * @programs `xxhsum`, `xxh32sum`, `xxh64sum`, `xxh128sum` * @version `0.8.3` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install xxhsum` * @name `xxhsum` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.xxhsum * // Or access via domain * const samePkg = pantry.githubcomcyan4973xxhash * console.log(pkg === samePkg) // true * console.log(pkg.name) // "xxhsum" * console.log(pkg.description) // "Extremely fast non-cryptographic hash algorithm" * console.log(pkg.programs) // ["xxhsum", "xxh32sum", ...] * console.log(pkg.versions[0]) // "0.8.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/Cyan4973/xxHash.md * @see https://ts-pkgx.netlify.app/usage */ export declare const xxhsumPackage: { /** * The display name of this package. */ name: 'xxhsum'; /** * The canonical domain name for this package. */ domain: 'github.com/Cyan4973/xxHash'; /** * Brief description of what this package does. */ description: 'Extremely fast non-cryptographic hash algorithm'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/Cyan4973/xxHash/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install xxhsum'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['xxhsum', 'xxh32sum', 'xxh64sum', 'xxh128sum']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.8.3', '0.8.2', '0.8.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/Cyan4973/xxHash -- $SHELL -i'; launchpadInstallCommand: 'launchpad install xxhsum' }; export type XxhsumPackage = typeof xxhsumPackage