UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.19 kB
/** * **spacer** - Small command-line utility for adding spacers to command output * * @domain `github.com/samwho/spacer` * @programs `spacer` * @version `0.3.9` (8 versions available) * @versions From newest version to oldest. * * @install `launchpad install spacer` * @name `spacer` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.spacer * // Or access via domain * const samePkg = pantry.githubcomsamwhospacer * console.log(pkg === samePkg) // true * 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.3.9" (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/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install spacer'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['spacer']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.3.9', '0.3.8', '0.3.7', '0.3.5', '0.3.3', '0.3.2', '0.3.1', '0.3.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type SpacerPackage = typeof spacerPackage