/** * **ed** - pkgx package * * @domain `gnu.org/ed` * @programs `ed` * @version `1.22.3` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install gnu.org/ed` * @buildDependencies `curl.se`, `nongnu.org/lzip` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnuorged * console.log(pkg.name) // "ed" * console.log(pkg.programs) // ["ed"] * console.log(pkg.versions[0]) // "1.22.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnu-org/ed.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gnuorgedPackage: { /** * 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: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gnu.org/ed'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnu.org/ed -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gnu.org/ed'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['ed']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['curl.se', 'nongnu.org/lzip']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.22.3', '1.22.2', '1.22.1', '1.21.1', '1.20.2', '1.20.1', '1.14.2']; aliases: readonly [] }; export type GnuorgedPackage = typeof gnuorgedPackage