/** * **versio** - A version number manager * * @domain `crates.io/versio` * @programs `versio` * @version `0.8.5` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install crates.io/versio` * @dependencies `openssl.org^1.1`, `gnupg.org/libgpg-error@1`, `gnupg.org/gpgme^1.13`, ... (+2 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesioversio * console.log(pkg.name) // "versio" * console.log(pkg.description) // "A version number manager" * console.log(pkg.programs) // ["versio"] * console.log(pkg.versions[0]) // "0.8.5" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/versio.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cratesioversioPackage: { /** * The display name of this package. */ name: 'versio'; /** * The canonical domain name for this package. */ domain: 'crates.io/versio'; /** * Brief description of what this package does. */ description: 'A version number manager'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/versio/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/chaaz/versio'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/versio'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/versio -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/versio'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['versio']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['openssl.org^1.1', 'gnupg.org/libgpg-error@1', 'gnupg.org/gpgme^1.13', 'gnupg.org/libassuan', 'zlib.net^1']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.8.5', '0.8.3', '0.7.6']; aliases: readonly [] }; export type CratesioversioPackage = typeof cratesioversioPackage