UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

68 lines 2.02 kB
/** * **mecab** - pkgx package * * @domain `taku910.github.io/mecab` * @programs `mecab`, `mecab-config` * @version `0.996.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install +taku910.github.io/mecab -- $SHELL -i` * @name `mecab` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.mecab * // Or access via domain * const samePkg = pantry.taku910githubiomecab * console.log(pkg === samePkg) // true * console.log(pkg.name) // "mecab" * console.log(pkg.programs) // ["mecab", "mecab-config"] * console.log(pkg.versions[0]) // "0.996.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/taku910-github-io/mecab.md * @see https://ts-pkgx.netlify.app/usage */ export declare const mecabPackage: { /** * The display name of this package. */ name: 'mecab'; /** * The canonical domain name for this package. */ domain: 'taku910.github.io/mecab'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/taku910.github.io/mecab/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +taku910.github.io/mecab -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['mecab', 'mecab-config']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.996.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type MecabPackage = typeof mecabPackage