ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.26 kB
TypeScript
/**
* **dhall** - Interpreter for the Dhall language
*
* @domain `dhall-lang.org`
* @programs `dhall`
* @version `1.42.2` (2 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install dhall`
* @aliases `dhall`
* @dependencies `invisible-island.net/ncurses^6.4`, `zlib.net^1.3`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.dhall
* // Or access via domain
* const samePkg = pantry.dhalllangorg
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "dhall-lang.org"
* console.log(pkg.description) // "Interpreter for the Dhall language"
* console.log(pkg.programs) // ["dhall"]
* console.log(pkg.versions[0]) // "1.42.2" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/dhall-lang-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const dhallPackage: {
/**
* The display name of this package.
*/
name: 'dhall-lang.org';
/**
* The canonical domain name for this package.
*/
domain: 'dhall-lang.org';
/**
* Brief description of what this package does.
*/
description: 'Interpreter for the Dhall language';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/dhall-lang.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 dhall';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['dhall'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['invisible-island.net/ncurses^6.4', 'zlib.net^1.3'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.42.2', '1.42.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['dhall']
};
export type DhallPackage = typeof dhallPackage