UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.38 kB
/** * **hexedit** - View and edit files in hexadecimal or in ASCII * * @domain `rigaux.org/hexedit` * @programs `hexedit` * @version `1.6.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install hexedit` * @name `hexedit` * @dependencies `invisible-island.net/ncurses@6` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.hexedit * // Or access via domain * const samePkg = pantry.rigauxorghexedit * console.log(pkg === samePkg) // true * console.log(pkg.name) // "hexedit" * console.log(pkg.description) // "View and edit files in hexadecimal or in ASCII" * console.log(pkg.programs) // ["hexedit"] * console.log(pkg.versions[0]) // "1.6.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/rigaux-org/hexedit.md * @see https://ts-pkgx.netlify.app/usage */ export declare const hexeditPackage: { /** * The display name of this package. */ name: 'hexedit'; /** * The canonical domain name for this package. */ domain: 'rigaux.org/hexedit'; /** * Brief description of what this package does. */ description: 'View and edit files in hexadecimal or in ASCII'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/rigaux.org/hexedit/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install hexedit'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['hexedit']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['invisible-island.net/ncurses@6']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.6.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) hexedit -- $SHELL -i'; launchpadInstallCommand: 'launchpad install hexedit' }; export type HexeditPackage = typeof hexeditPackage