/** * **md5sha1sum** - Hash utilities * * @domain `microbrew.org/md5sha1sum` * @programs `md5sum`, `sha1sum`, `ripemd160sum` * @version `0.9.5` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install microbrew.org/md5sha1sum` * @homepage http://microbrew.org/tools/md5sha1sum/ * @dependencies `openssl.org^1.1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.microbreworgmd5sha1sum * console.log(pkg.name) // "md5sha1sum" * console.log(pkg.description) // "Hash utilities" * console.log(pkg.programs) // ["md5sum", "sha1sum", ...] * console.log(pkg.versions[0]) // "0.9.5" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/microbrew-org/md5sha1sum.md * @see https://ts-pkgx.netlify.app/usage */ export declare const microbreworgmd5sha1sumPackage: { /** * The display name of this package. */ name: 'md5sha1sum'; /** * The canonical domain name for this package. */ domain: 'microbrew.org/md5sha1sum'; /** * Brief description of what this package does. */ description: 'Hash utilities'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/microbrew.org/md5sha1sum/package.yml'; homepageUrl: 'http://microbrew.org/tools/md5sha1sum/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install microbrew.org/md5sha1sum'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +microbrew.org/md5sha1sum -- $SHELL -i'; launchpadInstallCommand: 'launchpad install microbrew.org/md5sha1sum'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['md5sum', 'sha1sum', 'ripemd160sum']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['openssl.org^1.1']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.9.5']; aliases: readonly [] }; export type Microbreworgmd5sha1sumPackage = typeof microbreworgmd5sha1sumPackage