ts-pkgx
Version:
A library & CLI for managing packages
65 lines • 2.24 kB
TypeScript
/**
* **gts.sourceforge.net** - GNU triangulated surface library
*
* @domain `gts.sourceforge.net`
* @programs `delaunay`, `gts2dxf`, `gts2oogl`, `gts2stl`, `gtscheck`, ... (+4 more)
* @version `0.7.6` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +gts.sourceforge.net -- $SHELL -i`
* @dependencies `gnome.org/glib>=2.4.0`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.gtssourceforgenet
* console.log(pkg.name) // "gts.sourceforge.net"
* console.log(pkg.description) // "GNU triangulated surface library"
* console.log(pkg.programs) // ["delaunay", "gts2dxf", ...]
* console.log(pkg.versions[0]) // "0.7.6" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/gts-sourceforge-net.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const gtssourceforgenetPackage: {
/**
* The display name of this package.
*/
name: 'gts.sourceforge.net';
/**
* The canonical domain name for this package.
*/
domain: 'gts.sourceforge.net';
/**
* Brief description of what this package does.
*/
description: 'GNU triangulated surface library';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gts.sourceforge.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 +gts.sourceforge.net -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['delaunay', 'gts2dxf', 'gts2oogl', 'gts2stl', 'gtscheck', 'gtscompare', 'gtstemplate', 'stl2gts', 'transform'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['gnome.org/glib>=2.4.0'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.7.6'];
aliases: readonly []
};
export type GtssourceforgenetPackage = typeof gtssourceforgenetPackage