ts-pkgx
Version:
A library & CLI for managing packages
60 lines • 1.92 kB
TypeScript
/**
* **gnu.org/libmicrohttpd** - pkgx package
*
* @domain `gnu.org/libmicrohttpd`
* @version `1.0.2` (2 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install gnu.org/libmicrohttpd`
* @dependencies `gnu.org/libunistring^1`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.gnuorglibmicrohttpd
* console.log(pkg.name) // "gnu.org/libmicrohttpd"
* console.log(pkg.versions[0]) // "1.0.2" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/gnu-org/libmicrohttpd.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const gnuorglibmicrohttpdPackage: {
/**
* The display name of this package.
*/
name: 'gnu.org/libmicrohttpd';
/**
* The canonical domain name for this package.
*/
domain: 'gnu.org/libmicrohttpd';
/**
* Brief description of what this package does.
*/
description: '';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/libmicrohttpd/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install gnu.org/libmicrohttpd';
programs: readonly [];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['gnu.org/libunistring^1'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.0.2', '1.0.1'];
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnu.org/libmicrohttpd -- $SHELL -i';
launchpadInstallCommand: 'launchpad install gnu.org/libmicrohttpd'
};
export type GnuorglibmicrohttpdPackage = typeof gnuorglibmicrohttpdPackage