UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.13 kB
/** * **wordl** - Terminal wordle. Web like GUI with Keyboard hints, guess reveal animations etc. * * @domain `crates.io/wordl` * @programs `wordl` * @version `0.3.0` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install wordl` * @name `wordl` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.wordl * // Or access via domain * const samePkg = pantry.cratesiowordl * console.log(pkg === samePkg) // true * console.log(pkg.name) // "wordl" * console.log(pkg.description) // "Terminal wordle. Web like GUI with Keyboard hin..." * console.log(pkg.programs) // ["wordl"] * console.log(pkg.versions[0]) // "0.3.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/wordl.md * @see https://ts-pkgx.netlify.app/usage */ export declare const wordlPackage: { /** * The display name of this package. */ name: 'wordl'; /** * The canonical domain name for this package. */ domain: 'crates.io/wordl'; /** * Brief description of what this package does. */ description: 'Terminal wordle. Web like GUI with Keyboard hints, guess reveal animations etc.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/wordl/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install wordl'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['wordl']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.3.0', '0.2.0', '0.1.6', '0.1.5']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type WordlPackage = typeof wordlPackage