/** * **sed** - pkgx package * * @domain `gnu.org/sed` * @programs `sed` * @version `4.9.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install gnu.org/sed` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnuorgsed * console.log(pkg.name) // "sed" * console.log(pkg.programs) // ["sed"] * console.log(pkg.versions[0]) // "4.9.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnu-org/sed.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gnuorgsedPackage: { /** * The display name of this package. */ name: 'sed'; /** * The canonical domain name for this package. */ domain: 'gnu.org/sed'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/sed/package.yml'; homepageUrl: ''; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gnu.org/sed'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnu.org/sed -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gnu.org/sed'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['sed']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.9.0']; aliases: readonly [] }; export type GnuorgsedPackage = typeof gnuorgsedPackage