ts-pkgx
Version:
A library & CLI for managing packages
55 lines • 1.59 kB
TypeScript
/**
* **gnu.org/mpc** - pkgx package
*
* @domain `gnu.org/mpc`
* @version `1.3.1` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install gnu.org/mpc`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.gnuorgmpc
* console.log(pkg.name) // "gnu.org/mpc"
* console.log(pkg.versions[0]) // "1.3.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/gnu-org/mpc.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const gnuorgmpcPackage: {
/**
* The display name of this package.
*/
name: 'gnu.org/mpc';
/**
* The canonical domain name for this package.
*/
domain: 'gnu.org/mpc';
/**
* Brief description of what this package does.
*/
description: '';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/mpc/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install gnu.org/mpc';
programs: readonly [];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.3.1'];
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnu.org/mpc -- $SHELL -i';
launchpadInstallCommand: 'launchpad install gnu.org/mpc'
};
export type GnuorgmpcPackage = typeof gnuorgmpcPackage