/** * **nvm-exec** - Node Version Manager - POSIX-compliant bash script to manage multiple active node.js versions * * @domain `github.com/nvm-sh/nvm` * @programs `nvm-exec` * @version `0.40.3` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/nvm-sh/nvm` * @dependencies `linux:curl.se` (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomnvmshnvm * console.log(pkg.name) // "nvm-exec" * console.log(pkg.description) // "Node Version Manager - POSIX-compliant bash scr..." * console.log(pkg.programs) // ["nvm-exec"] * console.log(pkg.versions[0]) // "0.40.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/nvm-sh/nvm.md * @see https://ts-pkgx.netlify.app/usage */ export declare const nvmPackage: { /** * The display name of this package. */ name: 'nvm-exec'; /** * The canonical domain name for this package. */ domain: 'github.com/nvm-sh/nvm'; /** * Brief description of what this package does. */ description: 'Node Version Manager - POSIX-compliant bash script to manage multiple active node.js versions'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/nvm-sh/nvm/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/nvm-sh/nvm'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/nvm-sh/nvm'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/nvm-sh/nvm -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/nvm-sh/nvm'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['nvm-exec']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['linux:curl.se']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.40.3', '0.40.2', '0.40.1', '0.40.0', '0.39.7', '0.39.6', '0.39.5']; aliases: readonly [] }; export type NvmPackage = typeof nvmPackage