/** * **bpb** - boats's personal barricade * * @domain `crates.io/bpb` * @programs `bpb` * @version `1.1.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install crates.io/bpb` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesiobpb * console.log(pkg.name) // "bpb" * console.log(pkg.description) // "boats's personal barricade" * console.log(pkg.programs) // ["bpb"] * console.log(pkg.versions[0]) // "1.1.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/bpb.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cratesiobpbPackage: { /** * The display name of this package. */ name: 'bpb'; /** * The canonical domain name for this package. */ domain: 'crates.io/bpb'; /** * Brief description of what this package does. */ description: 'boats\'s personal barricade'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/bpb/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/withoutboats/bpb'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/bpb'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/bpb -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/bpb'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['bpb']; 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.1.0']; aliases: readonly [] }; export type CratesiobpbPackage = typeof cratesiobpbPackage