ts-pkgx
Version:
A library & CLI for managing packages
76 lines • 2.69 kB
TypeScript
/**
* **keyring** - Easy way to access the system keyring service from python
*
* @domain `github.com/jaraco/keyring`
* @programs `keyring`
* @version `25.6.0` (12 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install keyring`
* @name `keyring`
* @dependencies `pkgx.sh^1`, `github.com/python-cffi/cffi^1.16`, `github.com/eliben/pycparser^2.21`, ... (+1 more)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.keyring
* // Or access via domain
* const samePkg = pantry.githubcomjaracokeyring
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "keyring"
* console.log(pkg.description) // "Easy way to access the system keyring service f..."
* console.log(pkg.programs) // ["keyring"]
* console.log(pkg.versions[0]) // "25.6.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/jaraco/keyring.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const keyringPackage: {
/**
* The display name of this package.
*/
name: 'keyring';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/jaraco/keyring';
/**
* Brief description of what this package does.
*/
description: 'Easy way to access the system keyring service from python';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/jaraco/keyring/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/jaraco/keyring';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install keyring';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['keyring'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['pkgx.sh^1', 'github.com/python-cffi/cffi^1.16', 'github.com/eliben/pycparser^2.21', 'cryptography.io^42'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['25.6.0', '25.5.0', '25.4.1', '25.4.0', '25.3.0', '25.2.1', '25.2.0', '25.1.0', '25.0.1', '25.0.0', '24.3.1', '24.3.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) keyring -- $SHELL -i';
launchpadInstallCommand: 'launchpad install keyring'
};
export type KeyringPackage = typeof keyringPackage