UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

53 lines 1.48 kB
/** * **cmocka.org** - pkgx package * * @domain `cmocka.org` * @version `1.1.7` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install +cmocka.org -- $SHELL -i` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cmockaorg * console.log(pkg.name) // "cmocka.org" * console.log(pkg.versions[0]) // "1.1.7" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/cmocka-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cmockaorgPackage: { /** * The display name of this package. */ name: 'cmocka.org'; /** * The canonical domain name for this package. */ domain: 'cmocka.org'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/cmocka.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +cmocka.org -- $SHELL -i'; 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.1.7']; aliases: readonly [] }; export type CmockaorgPackage = typeof cmockaorgPackage