/** * **ncurses** - Text-based UI library * * @domain `invisible-island.net/ncurses` * @programs `captoinfo`, `clear`, `infocmp`, `infotocap`, `ncursesw6-config`, ... (+6 more) * @version `6.5.0` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install invisible-island.net/ncurses` * @homepage https://invisible-island.net/ncurses/announce.html * @buildDependencies `github.com/tmux/tmux@^3` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.invisibleislandnetncurses * console.log(pkg.name) // "ncurses" * console.log(pkg.description) // "Text-based UI library" * console.log(pkg.programs) // ["captoinfo", "clear", ...] * console.log(pkg.versions[0]) // "6.5.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/invisible-island-net/ncurses.md * @see https://ts-pkgx.netlify.app/usage */ export declare const invisibleislandnetncursesPackage: { /** * The display name of this package. */ name: 'ncurses'; /** * The canonical domain name for this package. */ domain: 'invisible-island.net/ncurses'; /** * Brief description of what this package does. */ description: 'Text-based UI library'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/invisible-island.net/ncurses/package.yml'; homepageUrl: 'https://invisible-island.net/ncurses/announce.html'; githubUrl: 'https://github.com/mirror/ncurses'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install invisible-island.net/ncurses'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +invisible-island.net/ncurses -- $SHELL -i'; launchpadInstallCommand: 'launchpad install invisible-island.net/ncurses'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['captoinfo', 'clear', 'infocmp', 'infotocap', 'ncursesw6-config', 'reset', 'tabs', 'tic', 'toe', 'tput', 'tset']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['github.com/tmux/tmux@^3']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['6.5.0', '6.4.0', '6.3.0']; aliases: readonly [] }; export type InvisibleislandnetncursesPackage = typeof invisibleislandnetncursesPackage