ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.17 kB
TypeScript
/**
* **gdbm** - GNU database manager
*
* @domain `gnu.org/gdbm`
* @programs `gdbm_dump`, `gdbm_load`, `gdbmtool`
* @version `1.26.0` (4 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install gdbm`
* @name `gdbm`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.gdbm
* // Or access via domain
* const samePkg = pantry.gnuorggdbm
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "gdbm"
* console.log(pkg.description) // "GNU database manager"
* console.log(pkg.programs) // ["gdbm_dump", "gdbm_load", ...]
* console.log(pkg.versions[0]) // "1.26.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/gnu-org/gdbm.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const gdbmPackage: {
/**
* The display name of this package.
*/
name: 'gdbm';
/**
* The canonical domain name for this package.
*/
domain: 'gnu.org/gdbm';
/**
* Brief description of what this package does.
*/
description: 'GNU database manager';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/gdbm/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install gdbm';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['gdbm_dump', 'gdbm_load', 'gdbmtool'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.26.0', '1.25.0', '1.24.0', '1.23.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnu.org/gdbm -- $SHELL -i';
launchpadInstallCommand: 'launchpad install gdbm'
};
export type GdbmPackage = typeof gdbmPackage