ts-pkgx
Version:
A library & CLI for managing packages
76 lines • 2.3 kB
TypeScript
/**
* **zsh** - UNIX shell (command interpreter)
*
* @domain `zsh.sourceforge.io`
* @programs `zsh`
* @version `5.9.0` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install zsh`
* @name `zsh`
* @dependencies `invisible-island.net/ncurses`, `pcre.org`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.zsh
* // Or access via domain
* const samePkg = pantry.zshsourceforgeio
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "zsh"
* console.log(pkg.description) // "UNIX shell (command interpreter)"
* console.log(pkg.programs) // ["zsh"]
* console.log(pkg.versions[0]) // "5.9.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/zsh-sourceforge-io.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const zshPackage: {
/**
* The display name of this package.
*/
name: 'zsh';
/**
* The canonical domain name for this package.
*/
domain: 'zsh.sourceforge.io';
/**
* Brief description of what this package does.
*/
description: 'UNIX shell (command interpreter)';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/zsh.sourceforge.io/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install zsh';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['zsh'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['invisible-island.net/ncurses', 'pcre.org'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['5.9.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) zsh -- $SHELL -i';
launchpadInstallCommand: 'launchpad install zsh'
};
export type ZshPackage = typeof zshPackage