UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.38 kB
/** * **blueutil** - CLI for bluetooth on OSX: power, discoverable state, list, inquire devices, connect, info, … * * @domain `github.com/toy/blueutil` * @programs `blueutil` * @version `2.13.0` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install blueutil` * @name `blueutil` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.blueutil * // Or access via domain * const samePkg = pantry.githubcomtoyblueutil * console.log(pkg === samePkg) // true * console.log(pkg.name) // "blueutil" * console.log(pkg.description) // "CLI for bluetooth on OSX: power, discoverable s..." * console.log(pkg.programs) // ["blueutil"] * console.log(pkg.versions[0]) // "2.13.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/toy/blueutil.md * @see https://ts-pkgx.netlify.app/usage */ export declare const blueutilPackage: { /** * The display name of this package. */ name: 'blueutil'; /** * The canonical domain name for this package. */ domain: 'github.com/toy/blueutil'; /** * Brief description of what this package does. */ description: 'CLI for bluetooth on OSX: power, discoverable state, list, inquire devices, connect, info, …'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/toy/blueutil/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/toy/blueutil'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install blueutil'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['blueutil']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.13.0', '2.12.0', '2.11.0', '2.10.0', '2.9.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) blueutil -- $SHELL -i'; launchpadInstallCommand: 'launchpad install blueutil' }; export type BlueutilPackage = typeof blueutilPackage