/** * **hx** - A post-modern modal text editor. * * @domain `helix-editor.com` * @programs `hx` * @version `25.7.1` (10 versions available) * @versions From newest version to oldest. * * @install `launchpad install helix-editor.com` * @homepage https://helix-editor.com * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.helixeditorcom * console.log(pkg.name) // "hx" * console.log(pkg.description) // "A post-modern modal text editor." * console.log(pkg.programs) // ["hx"] * console.log(pkg.versions[0]) // "25.7.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/helix-editor-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const helixeditorcomPackage: { /** * The display name of this package. */ name: 'hx'; /** * 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: 'https://helix-editor.com'; githubUrl: 'https://github.com/helix-editor/helix'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install helix-editor.com'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +helix-editor.com -- $SHELL -i'; launchpadInstallCommand: 'launchpad install helix-editor.com'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['hx']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['25.7.1', '25.7.0', '25.1.1', '25.1.0', '24.7.0', '24.3.0', '23.10.0', '23.5.0', '23.3.0', '22.12.0']; aliases: readonly [] }; export type HelixeditorcomPackage = typeof helixeditorcomPackage