ts-pkgx
Version:
A library & CLI for managing packages
76 lines • 2.7 kB
TypeScript
/**
* **nu** - Modern shell for the GitHub era
*
* @domain `nushell.sh`
* @programs `nu`
* @version `0.106.1` (50 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install nu`
* @name `nu`
* @dependencies `openssl.org^1`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.nu
* // Or access via domain
* const samePkg = pantry.nushellsh
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "nu"
* console.log(pkg.description) // "Modern shell for the GitHub era"
* console.log(pkg.programs) // ["nu"]
* console.log(pkg.versions[0]) // "0.106.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/nushell-sh.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const nuPackage: {
/**
* The display name of this package.
*/
name: 'nu';
/**
* The canonical domain name for this package.
*/
domain: 'nushell.sh';
/**
* Brief description of what this package does.
*/
description: 'Modern shell for the GitHub era';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/nushell.sh/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install nu';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['nu'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['openssl.org^1'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.106.1', '0.106.0', '0.105.1', '0.105.0', '0.104.1', '0.104.0', '0.103.0', '0.102.0', '0.101.0', '0.100.0', '0.99.1', '0.99.0', '0.98.0', '0.97.1', '0.97.0', '0.96.1', '0.96.0', '0.95.0', '0.94.2', '0.94.1', '0.94.0', '0.93.0', '0.92.2', '0.92.1', '0.92.0', '0.91.0', '0.90.1', '0.90.0', '0.89.0', '0.88.1', '0.88.0', '0.87.1', '0.87.0', '0.86.0', '0.85.0', '0.84.0', '0.83.1', '0.83.0', '0.82.0', '0.81.0', '0.80.0', '0.79.0', '0.78.0', '0.77.1', '0.77.0', '0.76.0', '0.75.0', '0.74.0', '0.73.0', '0.72.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) nu -- $SHELL -i';
launchpadInstallCommand: 'launchpad install nu'
};
export type NuPackage = typeof nuPackage