UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.08 kB
/** * **hx** - A post-modern modal text editor. * * @domain `helix-editor.com` * @programs `hx` * @version `25.1.1` (8 versions available) * @versions From newest version to oldest. * * @install `launchpad install hx` * @aliases `hx` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.hx * // Or access via domain * const samePkg = pantry.helixeditorcom * console.log(pkg === samePkg) // true * console.log(pkg.name) // "helix-editor.com" * console.log(pkg.description) // "A post-modern modal text editor." * console.log(pkg.programs) // ["hx"] * console.log(pkg.versions[0]) // "25.1.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/helix-editor-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const hxPackage: { /** * The display name of this package. */ name: 'helix-editor.com'; /** * The canonical domain name for this package. */ domain: 'helix-editor.com'; /** * Brief description of what this package does. */ description: 'A post-modern modal text editor.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/helix-editor.com/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install hx'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['hx']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['25.1.1', '25.1.0', '24.7.0', '24.3.0', '23.10.0', '23.5.0', '23.3.0', '22.12.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['hx'] }; export type HxPackage = typeof hxPackage