ts-pkgx
Version:
A library & CLI for managing packages
70 lines • 2.13 kB
TypeScript
/**
* **op** - pkgx package
*
* @domain `developer.1password.com/1password-cli`
* @programs `op`
* @version `2.32.0` (4 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install op`
* @aliases `op`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.op
* // Or access via domain
* const samePkg = pantry.developer1passwordcom1passwordcli
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "1Password CLI"
* console.log(pkg.programs) // ["op"]
* console.log(pkg.versions[0]) // "2.32.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/developer-1password-com/1password-cli.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const opPackage: {
/**
* The display name of this package.
*/
name: '1Password CLI';
/**
* The canonical domain name for this package.
*/
domain: 'developer.1password.com/1password-cli';
/**
* Brief description of what this package does.
*/
description: '';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/developer.1password.com/1password-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 op';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['op'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.32.0', '2.31.1', '2.31.0', '2.30.3'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['op'];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) op -- $SHELL -i';
launchpadInstallCommand: 'launchpad install op'
};
export type OpPackage = typeof opPackage