ts-pkgx
Version:
A library & CLI for managing packages
65 lines • 2.43 kB
TypeScript
/**
* **expect** - Program that can automate interactive applications
*
* @domain `tcl-lang.org/expect`
* @programs `autoexpect`, `autopasswd`, `cryptdir`, `decryptdir`, `dislocate`, ... (+17 more)
* @version `5.45.4` (3 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +tcl-lang.org/expect -- $SHELL -i`
* @dependencies `tcl.tk/tcl^8`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.tcllangorgexpect
* console.log(pkg.name) // "expect"
* console.log(pkg.description) // "Program that can automate interactive applications"
* console.log(pkg.programs) // ["autoexpect", "autopasswd", ...]
* console.log(pkg.versions[0]) // "5.45.4" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/tcl-lang-org/expect.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const tcllangorgexpectPackage: {
/**
* The display name of this package.
*/
name: 'expect';
/**
* The canonical domain name for this package.
*/
domain: 'tcl-lang.org/expect';
/**
* Brief description of what this package does.
*/
description: 'Program that can automate interactive applications';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/tcl-lang.org/expect/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +tcl-lang.org/expect -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['autoexpect', 'autopasswd', 'cryptdir', 'decryptdir', 'dislocate', 'expect', 'ftp-rfc', 'kibitz', 'lpunlock', 'mkpasswd', 'multixterm', 'passmass', 'rftp', 'rlogin-cwd', 'timed-read', 'timed-run', 'tknewsbiff', 'tkpasswd', 'unbuffer', 'weather', 'xkibitz', 'xpstat'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['tcl.tk/tcl^8'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['5.45.4', '5.45.3', '5.45.0'];
aliases: readonly []
};
export type TcllangorgexpectPackage = typeof tcllangorgexpectPackage