/** * **spacer** - Small command-line utility for adding spacers to command output * * @domain `github.com/samwho/spacer` * @programs `spacer` * @version `0.5.0` (12 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/samwho/spacer` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomsamwhospacer * console.log(pkg.name) // "spacer" * console.log(pkg.description) // "Small command-line utility for adding spacers t..." * console.log(pkg.programs) // ["spacer"] * console.log(pkg.versions[0]) // "0.5.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/samwho/spacer.md * @see https://ts-pkgx.netlify.app/usage */ export declare const spacerPackage: { /** * The display name of this package. */ name: 'spacer'; /** * The canonical domain name for this package. */ domain: 'github.com/samwho/spacer'; /** * Brief description of what this package does. */ description: 'Small command-line utility for adding spacers to command output'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/samwho/spacer/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/samwho/spacer'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/samwho/spacer'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/samwho/spacer -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/samwho/spacer'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['spacer']; 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.5.0', '0.4.5', '0.4.2', '0.4.1', '0.3.9', '0.3.8', '0.3.7', '0.3.5', '0.3.3', '0.3.2', '0.3.1', '0.3.0']; aliases: readonly [] }; export type SpacerPackage = typeof spacerPackage