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