UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.16 kB
/** * **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` * @aliases `nspr-config` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.nsprconfig * // Or access via domain * const samePkg = pantry.mozillaorgnspr * console.log(pkg === samePkg) // true * console.log(pkg.name) // "nspr" * 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'; /** * 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 ['nspr-config'] }; export type NsprconfigPackage = typeof nsprconfigPackage