UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.07 kB
/** * **rbw** - Unofficial Bitwarden CLI client * * @domain `git.tozt.net/rbw` * @programs `rbw` * @version `1.13.2` (11 versions available) * @versions From newest version to oldest. * * @install `launchpad install rbw` * @name `rbw` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.rbw * // Or access via domain * const samePkg = pantry.gittoztnetrbw * console.log(pkg === samePkg) // true * console.log(pkg.name) // "rbw" * console.log(pkg.description) // "Unofficial Bitwarden CLI client" * console.log(pkg.programs) // ["rbw"] * console.log(pkg.versions[0]) // "1.13.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/git-tozt-net/rbw.md * @see https://ts-pkgx.netlify.app/usage */ export declare const rbwPackage: { /** * The display name of this package. */ name: 'rbw'; /** * The canonical domain name for this package. */ domain: 'git.tozt.net/rbw'; /** * Brief description of what this package does. */ description: 'Unofficial Bitwarden CLI client'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/git.tozt.net/rbw/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install rbw'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['rbw']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.13.2', '1.13.1', '1.13.0', '1.12.1', '1.12.0', '1.11.1', '1.11.0', '1.10.2', '1.10.1', '1.10.0', '1.9.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type RbwPackage = typeof rbwPackage