UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

75 lines 2.4 kB
/** * **dym** - A CLI spelling corrector for when you're unsure * * @domain `crates.io/didyoumean` * @programs `dym` * @version `1.1.4` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install dym` * @aliases `dym` * @dependencies `openssl.org^1.1`, `linux:x.org/xcb` (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.dym * // Or access via domain * const samePkg = pantry.cratesiodidyoumean * console.log(pkg === samePkg) // true * console.log(pkg.name) // "didyoumean" * console.log(pkg.description) // "A CLI spelling corrector for when you're unsure" * console.log(pkg.programs) // ["dym"] * console.log(pkg.versions[0]) // "1.1.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/didyoumean.md * @see https://ts-pkgx.netlify.app/usage */ export declare const dymPackage: { /** * The display name of this package. */ name: 'didyoumean'; /** * The canonical domain name for this package. */ domain: 'crates.io/didyoumean'; /** * Brief description of what this package does. */ description: 'A CLI spelling corrector for when you\'re unsure'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/didyoumean/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install dym'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['dym']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['openssl.org^1.1', 'linux:x.org/xcb']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.1.4']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['dym'] }; export type DymPackage = typeof dymPackage