UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

72 lines 2.44 kB
/** * **passbolt** - A CLI tool to interact with Passbolt, a Open source Password Manager for Teams * * @domain `github.com/passbolt/go-passbolt-cli` * @programs `passbolt` * @version `0.3.2` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install passbolt` * @name `go-passbolt-cli` * @aliases `passbolt` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.passbolt * // Or access via domain * const samePkg = pantry.githubcompassboltgopassboltcli * console.log(pkg === samePkg) // true * console.log(pkg.name) // "go-passbolt-cli" * console.log(pkg.description) // "A CLI tool to interact with Passbolt, a Open s..." * console.log(pkg.programs) // ["passbolt"] * console.log(pkg.versions[0]) // "0.3.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/passbolt/go-passbolt-cli.md * @see https://ts-pkgx.netlify.app/usage */ export declare const passboltPackage: { /** * The display name of this package. */ name: 'go-passbolt-cli'; /** * The canonical domain name for this package. */ domain: 'github.com/passbolt/go-passbolt-cli'; /** * Brief description of what this package does. */ description: 'A CLI tool to interact with Passbolt, a Open source Password Manager for Teams'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/passbolt/go-passbolt-cli/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install passbolt'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['passbolt']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.3.2', '0.3.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['passbolt']; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) passbolt -- $SHELL -i'; launchpadInstallCommand: 'launchpad install passbolt' }; export type PassboltPackage = typeof passboltPackage