UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

77 lines 2.68 kB
/** * **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 nvm-exec` * @name `nvm-exec` * @dependencies `linux:curl.se` (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.nvmexec * // Or access via domain * const samePkg = pantry.githubcomnvmshnvm * console.log(pkg === samePkg) // true * 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 nvmexecPackage: { /** * 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/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install nvm-exec'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['nvm-exec']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['linux:curl.se']; /** * 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']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) nvm-exec -- $SHELL -i'; launchpadInstallCommand: 'launchpad install nvm-exec' }; export type NvmexecPackage = typeof nvmexecPackage