UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.6 kB
/** * **hunspell** - Spell checker and morphological analyzer * * @domain `hunspell.github.io` * @programs `analyze`, `chmorph`, `hunspell`, `hunzip`, `hzip`, ... (+2 more) * @version `1.7.2` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install hunspell` * @name `hunspell` * @dependencies `gnu.org/readline`, `invisible-island.net/ncurses`, `gnu.org/gettext` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.hunspell * // Or access via domain * const samePkg = pantry.hunspellgithubio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "hunspell" * console.log(pkg.description) // "Spell checker and morphological analyzer" * console.log(pkg.programs) // ["analyze", "chmorph", ...] * console.log(pkg.versions[0]) // "1.7.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/hunspell-github-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const hunspellPackage: { /** * The display name of this package. */ name: 'hunspell'; /** * The canonical domain name for this package. */ domain: 'hunspell.github.io'; /** * Brief description of what this package does. */ description: 'Spell checker and morphological analyzer'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/hunspell.github.io/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install hunspell'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['analyze', 'chmorph', 'hunspell', 'hunzip', 'hzip', 'munch', 'unmunch']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['gnu.org/readline', 'invisible-island.net/ncurses', 'gnu.org/gettext']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.7.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +hunspell.github.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install hunspell' }; export type HunspellPackage = typeof hunspellPackage