ts-pkgx
Version:
A library & CLI for managing packages
65 lines • 2.1 kB
TypeScript
/**
* **tcsh.org** - Enhanced, fully compatible version of the Berkeley C shell
*
* @domain `tcsh.org`
* @programs `csh`, `tcsh`
* @version `6.24.15` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +tcsh.org -- $SHELL -i`
* @dependencies `github.com/besser82/libxcrypt@4`, `invisible-island.net/ncurses@6`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.tcshorg
* console.log(pkg.name) // "tcsh.org"
* console.log(pkg.description) // "Enhanced, fully compatible version of the Berke..."
* console.log(pkg.programs) // ["csh", "tcsh"]
* console.log(pkg.versions[0]) // "6.24.15" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/tcsh-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const tcshorgPackage: {
/**
* The display name of this package.
*/
name: 'tcsh.org';
/**
* The canonical domain name for this package.
*/
domain: 'tcsh.org';
/**
* Brief description of what this package does.
*/
description: 'Enhanced, fully compatible version of the Berkeley C shell';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/tcsh.org/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +tcsh.org -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['csh', 'tcsh'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['github.com/besser82/libxcrypt@4', 'invisible-island.net/ncurses@6'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['6.24.15'];
aliases: readonly []
};
export type TcshorgPackage = typeof tcshorgPackage