ts-pkgx
Version:
A library & CLI for managing packages
62 lines • 1.87 kB
TypeScript
/**
* **libcerf** - pkgx package
*
* @domain `jugit.fz-juelich.de/mlz/libcerf`
* @version `2.5.0` (2 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +jugit.fz-juelich.de/mlz/libcerf -- $SHELL -i`
* @name `libcerf`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.libcerf
* // Or access via domain
* const samePkg = pantry.jugitfzjuelichdemlzlibcerf
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "libcerf"
* console.log(pkg.versions[0]) // "2.5.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/jugit-fz-juelich-de/mlz/libcerf.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const libcerfPackage: {
/**
* The display name of this package.
*/
name: 'libcerf';
/**
* The canonical domain name for this package.
*/
domain: 'jugit.fz-juelich.de/mlz/libcerf';
/**
* Brief description of what this package does.
*/
description: '';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/jugit.fz-juelich.de/mlz/libcerf/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +jugit.fz-juelich.de/mlz/libcerf -- $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 ['2.5.0', '2.4.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type LibcerfPackage = typeof libcerfPackage