ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.28 kB
TypeScript
/**
* **nspr-config** - Platform-neutral API for system-level and libc-like functions
*
* @domain `mozilla.org/nspr`
* @programs `nspr-config`
* @version `4.34.1` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install nspr-config`
* @name `nspr-config`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.nsprconfig
* // Or access via domain
* const samePkg = pantry.mozillaorgnspr
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "nspr-config"
* console.log(pkg.description) // "Platform-neutral API for system-level and libc-..."
* console.log(pkg.programs) // ["nspr-config"]
* console.log(pkg.versions[0]) // "4.34.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/mozilla-org/nspr.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const nsprconfigPackage: {
/**
* The display name of this package.
*/
name: 'nspr-config';
/**
* The canonical domain name for this package.
*/
domain: 'mozilla.org/nspr';
/**
* Brief description of what this package does.
*/
description: 'Platform-neutral API for system-level and libc-like functions';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/mozilla.org/nspr/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install nspr-config';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['nspr-config'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['4.34.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) nspr-config -- $SHELL -i';
launchpadInstallCommand: 'launchpad install nspr-config'
};
export type NsprconfigPackage = typeof nsprconfigPackage