/** * **volta** - JavaScript toolchain manager for reproducible environments * * @domain `volta.sh` * @programs `volta` * @version `2.0.2` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install volta.sh` * @homepage https://volta.sh * @dependencies `linux:curl.se/ca-certs` (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.voltash * console.log(pkg.name) // "volta" * console.log(pkg.description) // "JavaScript toolchain manager for reproducible e..." * console.log(pkg.programs) // ["volta"] * console.log(pkg.versions[0]) // "2.0.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/volta-sh.md * @see https://ts-pkgx.netlify.app/usage */ export declare const voltashPackage: { /** * The display name of this package. */ name: 'volta'; /** * The canonical domain name for this package. */ domain: 'volta.sh'; /** * Brief description of what this package does. */ description: 'JavaScript toolchain manager for reproducible environments'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/volta.sh/package.yml'; homepageUrl: 'https://volta.sh'; githubUrl: 'https://github.com/volta-cli/volta'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install volta.sh'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +volta.sh -- $SHELL -i'; launchpadInstallCommand: 'launchpad install volta.sh'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['volta']; 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/ca-certs']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.0.2', '2.0.1', '2.0.0', '1.1.1']; aliases: readonly [] }; export type VoltashPackage = typeof voltashPackage