UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.37 kB
/** * **bruce** - Basic Runtime for Uniform Compute Environments * * @domain `github.com/brucedom/bruce` * @programs `bruce` * @version `1.4.8` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install bruce` * @name `bruce` * @companions `linux` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.bruce * // Or access via domain * const samePkg = pantry.githubcombrucedombruce * console.log(pkg === samePkg) // true * console.log(pkg.name) // "bruce" * console.log(pkg.description) // "Basic Runtime for Uniform Compute Environments" * console.log(pkg.programs) // ["bruce"] * console.log(pkg.versions[0]) // "1.4.8" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/brucedom/bruce.md * @see https://ts-pkgx.netlify.app/usage */ export declare const brucePackage: { /** * The display name of this package. */ name: 'bruce'; /** * The canonical domain name for this package. */ domain: 'github.com/brucedom/bruce'; /** * Brief description of what this package does. */ description: 'Basic Runtime for Uniform Compute Environments'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/brucedom/bruce/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install bruce'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['bruce']; /** * Related packages that work well with this package. * Consider installing these for enhanced functionality. */ companions: readonly ['linux']; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.4.8', '1.2.8']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) bruce -- $SHELL -i'; launchpadInstallCommand: 'launchpad install bruce' }; export type BrucePackage = typeof brucePackage