ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.37 kB
TypeScript
/**
* **mmdblookup** - C library for the MaxMind DB file format
*
* @domain `github.com/maxmind/libmaxminddb`
* @programs `mmdblookup`
* @version `1.12.2` (9 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install mmdblookup`
* @name `mmdblookup`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.mmdblookup
* // Or access via domain
* const samePkg = pantry.githubcommaxmindlibmaxminddb
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "mmdblookup"
* console.log(pkg.description) // "C library for the MaxMind DB file format"
* console.log(pkg.programs) // ["mmdblookup"]
* console.log(pkg.versions[0]) // "1.12.2" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/maxmind/libmaxminddb.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const mmdblookupPackage: {
/**
* The display name of this package.
*/
name: 'mmdblookup';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/maxmind/libmaxminddb';
/**
* Brief description of what this package does.
*/
description: 'C library for the MaxMind DB file format';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/maxmind/libmaxminddb/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install mmdblookup';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['mmdblookup'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.12.2', '1.12.1', '1.12.0', '1.11.0', '1.10.0', '1.9.1', '1.9.0', '1.8.0', '1.7.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) mmdblookup -- $SHELL -i';
launchpadInstallCommand: 'launchpad install mmdblookup'
};
export type MmdblookupPackage = typeof mmdblookupPackage