ts-pkgx
Version:
A library & CLI for managing packages
60 lines • 2.06 kB
TypeScript
/**
* **qhull.org** - Qhull development for www.qhull.org -- Qhull 2020.2 (8.1-alpha1) at https://github.com/qhull/qhull/wiki
*
* @domain `qhull.org`
* @programs `qconvex`, `qdelaunay`, `qhalf`, `qhull`, `qvoronoi`, ... (+1 more)
* @version `8.0.2` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +qhull.org -- $SHELL -i`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.qhullorg
* console.log(pkg.name) // "qhull.org"
* console.log(pkg.description) // "Qhull development for www.qhull.org -- Qhull 20..."
* console.log(pkg.programs) // ["qconvex", "qdelaunay", ...]
* console.log(pkg.versions[0]) // "8.0.2" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/qhull-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const qhullorgPackage: {
/**
* The display name of this package.
*/
name: 'qhull.org';
/**
* The canonical domain name for this package.
*/
domain: 'qhull.org';
/**
* Brief description of what this package does.
*/
description: 'Qhull development for www.qhull.org -- Qhull 2020.2 (8.1-alpha1) at https://github.com/qhull/qhull/wiki';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/qhull.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 +qhull.org -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['qconvex', 'qdelaunay', 'qhalf', 'qhull', 'qvoronoi', 'rbox'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['8.0.2'];
aliases: readonly []
};
export type QhullorgPackage = typeof qhullorgPackage