UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

70 lines 1.97 kB
/** * **ed** - pkgx package * * @domain `gnu.org/ed` * @programs `ed` * @version `1.22.2` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install ed` * @name `ed` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.ed * // Or access via domain * const samePkg = pantry.gnuorged * console.log(pkg === samePkg) // true * console.log(pkg.name) // "ed" * console.log(pkg.programs) // ["ed"] * console.log(pkg.versions[0]) // "1.22.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnu-org/ed.md * @see https://ts-pkgx.netlify.app/usage */ export declare const edPackage: { /** * The display name of this package. */ name: 'ed'; /** * The canonical domain name for this package. */ domain: 'gnu.org/ed'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/ed/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install ed'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['ed']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.22.2', '1.22.1', '1.21.1', '1.20.2', '1.20.1', '1.14.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) ed -- $SHELL -i'; launchpadInstallCommand: 'launchpad install ed' }; export type EdPackage = typeof edPackage