UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.21 kB
/** * **lynx** - Text-based web browser * * @domain `invisible-island.net/lynx` * @programs `lynx` * @version `2.9.2` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install lynx` * @name `lynx` * @dependencies `openssl.org^3`, `invisible-island.net/ncurses^6` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.lynx * // Or access via domain * const samePkg = pantry.invisibleislandnetlynx * console.log(pkg === samePkg) // true * console.log(pkg.name) // "lynx" * console.log(pkg.description) // "Text-based web browser" * console.log(pkg.programs) // ["lynx"] * console.log(pkg.versions[0]) // "2.9.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/invisible-island-net/lynx.md * @see https://ts-pkgx.netlify.app/usage */ export declare const lynxPackage: { /** * The display name of this package. */ name: 'lynx'; /** * The canonical domain name for this package. */ domain: 'invisible-island.net/lynx'; /** * Brief description of what this package does. */ description: 'Text-based web browser'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/invisible-island.net/lynx/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install lynx'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['lynx']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openssl.org^3', 'invisible-island.net/ncurses^6']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.9.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type LynxPackage = typeof lynxPackage