ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.31 kB
TypeScript
/**
* **caddy** - Fast and extensible multi-platform HTTP/1-2-3 web server with automatic HTTPS
*
* @domain `caddyserver.com`
* @programs `caddy`
* @version `2.10.0` (10 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install caddy`
* @name `caddy`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.caddy
* // Or access via domain
* const samePkg = pantry.caddyservercom
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "caddy"
* console.log(pkg.description) // "Fast and extensible multi-platform HTTP/1-2-3 w..."
* console.log(pkg.programs) // ["caddy"]
* console.log(pkg.versions[0]) // "2.10.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/caddyserver-com.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const caddyPackage: {
/**
* The display name of this package.
*/
name: 'caddy';
/**
* The canonical domain name for this package.
*/
domain: 'caddyserver.com';
/**
* Brief description of what this package does.
*/
description: 'Fast and extensible multi-platform HTTP/1-2-3 web server with automatic HTTPS';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/caddyserver.com/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install caddy';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['caddy'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.10.0', '2.9.1', '2.9.0', '2.8.4', '2.8.2', '2.8.1', '2.8.0', '2.7.6', '2.7.5', '2.7.4'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) caddy -- $SHELL -i';
launchpadInstallCommand: 'launchpad install caddy'
};
export type CaddyPackage = typeof caddyPackage