UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

67 lines 2.37 kB
/** * **openresty.org** - High Performance Web Platform Based on Nginx and LuaJIT * * @domain `openresty.org` * @programs `nginx-xml2pod`, `opm`, `resty`, `restydoc`, `restydoc-index` * @version `1.25.3.2` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install openresty.org` * @dependencies `pcre.org@8`, `openssl.org^1.1`, `zlib.net^1.2`, ... (+1 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.openrestyorg * console.log(pkg.name) // "openresty.org" * console.log(pkg.description) // "High Performance Web Platform Based on Nginx an..." * console.log(pkg.programs) // ["nginx-xml2pod", "opm", ...] * console.log(pkg.versions[0]) // "1.25.3.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/openresty-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const openrestyorgPackage: { /** * The display name of this package. */ name: 'openresty.org'; /** * The canonical domain name for this package. */ domain: 'openresty.org'; /** * Brief description of what this package does. */ description: 'High Performance Web Platform Based on Nginx and LuaJIT'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/openresty.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 openresty.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['nginx-xml2pod', 'opm', 'resty', 'restydoc', 'restydoc-index']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['pcre.org@8', 'openssl.org^1.1', 'zlib.net^1.2', 'perl.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.25.3.2']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +openresty.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install openresty.org' }; export type OpenrestyorgPackage = typeof openrestyorgPackage