ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.69 kB
TypeScript
/**
* **certbot** - Certbot is EFF's tool to obtain certs from Let's Encrypt and (optionally) auto-enable HTTPS on your server. It can also act as a client for any other CA that uses the ACME protocol.
*
* @domain `certbot.eff.org`
* @programs `certbot`
* @version `4.1.1` (19 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install certbot`
* @aliases `certbot`
* @dependencies `python.org~3.11`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.certbot
* // Or access via domain
* const samePkg = pantry.certbotefforg
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "certbot.eff.org"
* console.log(pkg.description) // "Certbot is EFF's tool to obtain certs from Let'..."
* console.log(pkg.programs) // ["certbot"]
* console.log(pkg.versions[0]) // "4.1.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/certbot-eff-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const certbotPackage: {
/**
* The display name of this package.
*/
name: 'certbot.eff.org';
/**
* The canonical domain name for this package.
*/
domain: 'certbot.eff.org';
/**
* Brief description of what this package does.
*/
description: 'Certbot is EFF\'s tool to obtain certs from Let\'s Encrypt and (optionally) auto-enable HTTPS on your server. It can also act as a client for any other CA that uses the ACME protocol.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/certbot.eff.org/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install certbot';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['certbot'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['python.org~3.11'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['4.1.1', '4.1.0', '4.0.0', '3.3.0', '3.2.0', '3.1.0', '3.0.1', '3.0.0', '2.11.1', '2.11.0', '2.10.0', '2.9.0', '2.8.0', '2.7.4', '2.7.3', '2.7.2', '2.7.1', '2.7.0', '2.6.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['certbot']
};
export type CertbotPackage = typeof certbotPackage