/** * **xxh** - 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 github.com/Cyan4973/xxHash` * @homepage https://xxhash.com * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomcyan4973xxhash * console.log(pkg.name) // "xxh" * 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 xxhashPackage: { /** * The display name of this package. */ name: 'xxh'; /** * 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: 'https://xxhash.com'; githubUrl: 'https://github.com/Cyan4973/xxHash'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/Cyan4973/xxHash'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/Cyan4973/xxHash -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/Cyan4973/xxHash'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['xxhsum', 'xxh32sum', 'xxh64sum', 'xxh128sum']; companions: readonly []; dependencies: readonly []; buildDependencies: 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']; aliases: readonly [] }; export type XxhashPackage = typeof xxhashPackage