ts-pkgx
Version:
A library & CLI for managing packages
61 lines • 2.43 kB
TypeScript
/**
* **cryptography.io** - cryptography is a package designed to expose cryptographic primitives and recipes to Python developers.
*
* @domain `cryptography.io`
* @version `45.0.6` (23 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install cryptography.io`
* @dependencies `python.org>=3.11`, `github.com/python-cffi/cffi^1.16`, `openssl.org>=1.1`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.cryptographyio
* console.log(pkg.name) // "cryptography.io"
* console.log(pkg.description) // "cryptography is a package designed to expose cr..."
* console.log(pkg.versions[0]) // "45.0.6" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/cryptography-io.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const cryptographyioPackage: {
/**
* The display name of this package.
*/
name: 'cryptography.io';
/**
* The canonical domain name for this package.
*/
domain: 'cryptography.io';
/**
* Brief description of what this package does.
*/
description: 'cryptography is a package designed to expose cryptographic primitives and recipes to Python developers.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/cryptography.io/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pyca/cryptography';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install cryptography.io';
programs: readonly [];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['python.org>=3.11', 'github.com/python-cffi/cffi^1.16', 'openssl.org>=1.1'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['45.0.6', '45.0.5', '45.0.4', '45.0.3', '45.0.2', '45.0.1', '45.0.0', '44.0.3', '44.0.2', '44.0.1', '44.0.0', '43.0.3', '43.0.2', '43.0.1', '43.0.0', '42.0.8', '42.0.7', '42.0.6', '42.0.5', '42.0.4', '42.0.3', '42.0.2', '42.0.1'];
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +cryptography.io -- $SHELL -i';
launchpadInstallCommand: 'launchpad install cryptography.io'
};
export type CryptographyioPackage = typeof cryptographyioPackage