/** * **svu** - Semantic Version Util * * @domain `github.com/caarlos0/svu` * @programs `svu` * @version `3.3.0` (15 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/caarlos0/svu` * @buildDependencies `go.dev@^1.20` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomcaarlos0svu * console.log(pkg.name) // "svu" * console.log(pkg.description) // "Semantic Version Util" * console.log(pkg.programs) // ["svu"] * console.log(pkg.versions[0]) // "3.3.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/caarlos0/svu.md * @see https://ts-pkgx.netlify.app/usage */ export declare const svuPackage: { /** * The display name of this package. */ name: 'svu'; /** * The canonical domain name for this package. */ domain: 'github.com/caarlos0/svu'; /** * Brief description of what this package does. */ description: 'Semantic Version Util'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/caarlos0/svu/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/caarlos0/svu'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/caarlos0/svu'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/caarlos0/svu -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/caarlos0/svu'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['svu']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.20']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.3.0', '3.2.4', '3.2.3', '3.2.2', '3.2.1', '3.2.0', '3.1.0', '3.0.0', '2.2.0', '2.1.1', '2.1.0', '2.0.1', '2.0.0', '1.12.0', '1.11.0']; aliases: readonly [] }; export type SvuPackage = typeof svuPackage