ts-pkgx
Version:
A library & CLI for managing packages
56 lines • 1.8 kB
TypeScript
/**
* **apache.org/apr** - Mirror of Apache Portable Runtime
*
* @domain `apache.org/apr`
* @version `1.7.6` (5 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install apache.org/apr`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.apacheorgapr
* console.log(pkg.name) // "apache.org/apr"
* console.log(pkg.description) // "Mirror of Apache Portable Runtime"
* console.log(pkg.versions[0]) // "1.7.6" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/apache-org/apr.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const apacheorgaprPackage: {
/**
* The display name of this package.
*/
name: 'apache.org/apr';
/**
* The canonical domain name for this package.
*/
domain: 'apache.org/apr';
/**
* Brief description of what this package does.
*/
description: 'Mirror of Apache Portable Runtime';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/apache.org/apr/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install apache.org/apr';
programs: readonly [];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.7.6', '1.7.5', '1.7.4', '1.7.3', '1.7.2'];
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +apache.org/apr -- $SHELL -i';
launchpadInstallCommand: 'launchpad install apache.org/apr'
};
export type ApacheorgaprPackage = typeof apacheorgaprPackage