/** * **sig** - Interactive grep (for streaming) * * @domain `crates.io/sigrs` * @programs `sig` * @version `0.2.1` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install crates.io/sigrs` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesiosigrs * console.log(pkg.name) // "sig" * console.log(pkg.description) // "Interactive grep (for streaming)" * console.log(pkg.programs) // ["sig"] * console.log(pkg.versions[0]) // "0.2.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/sigrs.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cratesiosigrsPackage: { /** * The display name of this package. */ name: 'sig'; /** * The canonical domain name for this package. */ domain: 'crates.io/sigrs'; /** * Brief description of what this package does. */ description: 'Interactive grep (for streaming)'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/sigrs/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/ynqa/sig'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/sigrs'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/sigrs -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/sigrs'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['sig']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.2.1', '0.2.0', '0.1.4', '0.1.3', '0.1.2', '0.1.1', '0.1.0']; aliases: readonly [] }; export type CratesiosigrsPackage = typeof cratesiosigrsPackage