ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.44 kB
TypeScript
/**
* **dialog** - Display user-friendly message boxes from shell scripts
*
* @domain `invisible-island.net/dialog`
* @programs `dialog`, `dialog-config`
* @version `1.3.20230209` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +invisible-island.net/dialog -- $SHELL -i`
* @name `dialog`
* @dependencies `invisible-island.net/ncurses`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.dialog
* // Or access via domain
* const samePkg = pantry.invisibleislandnetdialog
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "dialog"
* console.log(pkg.description) // "Display user-friendly message boxes from shell ..."
* console.log(pkg.programs) // ["dialog", "dialog-config"]
* console.log(pkg.versions[0]) // "1.3.20230209" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/invisible-island-net/dialog.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const dialogPackage: {
/**
* The display name of this package.
*/
name: 'dialog';
/**
* The canonical domain name for this package.
*/
domain: 'invisible-island.net/dialog';
/**
* Brief description of what this package does.
*/
description: 'Display user-friendly message boxes from shell scripts';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/invisible-island.net/dialog/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +invisible-island.net/dialog -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['dialog', 'dialog-config'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['invisible-island.net/ncurses'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.3.20230209'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type DialogPackage = typeof dialogPackage