ts-pkgx
Version:
A library & CLI for managing packages
54 lines • 1.84 kB
TypeScript
/**
* **gc** - The Boehm-Demers-Weiser conservative C/C++ Garbage Collector (bdwgc, also known as bdw-gc, boehm-gc, libgc)
*
* @domain `hboehm.info/gc`
* @version `8.2.8` (7 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +hboehm.info/gc -- $SHELL -i`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.hboehminfogc
* console.log(pkg.name) // "gc"
* console.log(pkg.description) // "The Boehm-Demers-Weiser conservative C/C++ Garb..."
* console.log(pkg.versions[0]) // "8.2.8" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/hboehm-info/gc.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const hboehminfogcPackage: {
/**
* The display name of this package.
*/
name: 'gc';
/**
* The canonical domain name for this package.
*/
domain: 'hboehm.info/gc';
/**
* Brief description of what this package does.
*/
description: 'The Boehm-Demers-Weiser conservative C/C++ Garbage Collector (bdwgc, also known as bdw-gc, boehm-gc, libgc)';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/hboehm.info/gc/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +hboehm.info/gc -- $SHELL -i';
programs: readonly [];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['8.2.8', '8.2.6', '8.2.4', '8.0.14', '8.0.12', '7.6.22', '7.6.20'];
aliases: readonly []
};
export type HboehminfogcPackage = typeof hboehminfogcPackage