ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.61 kB
TypeScript
/**
* **unbound** - Unbound is a validating, recursive, and caching DNS resolver.
*
* @domain `unbound.net`
* @programs `unbound`, `unbound-anchor`, `unbound-checkconf`, `unbound-control`, `unbound-control-setup`, ... (+1 more)
* @version `1.23.0` (11 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +unbound.net -- $SHELL -i`
* @aliases `unbound`
* @dependencies `openssl.org^1`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.unbound
* // Or access via domain
* const samePkg = pantry.unboundnet
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "unbound.net"
* console.log(pkg.description) // "Unbound is a validating, recursive, and caching..."
* console.log(pkg.programs) // ["unbound", "unbound-anchor", ...]
* console.log(pkg.versions[0]) // "1.23.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/unbound-net.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const unboundPackage: {
/**
* The display name of this package.
*/
name: 'unbound.net';
/**
* The canonical domain name for this package.
*/
domain: 'unbound.net';
/**
* Brief description of what this package does.
*/
description: 'Unbound is a validating, recursive, and caching DNS resolver.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/unbound.net/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +unbound.net -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['unbound', 'unbound-anchor', 'unbound-checkconf', 'unbound-control', 'unbound-control-setup', 'unbound-host'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['openssl.org^1'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.23.0', '1.22.0', '1.21.1', '1.21.0', '1.20.0', '1.19.3', '1.19.2', '1.19.1', '1.19.0', '1.18.0', '1.17.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['unbound']
};
export type UnboundPackage = typeof unboundPackage