UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

64 lines 1.94 kB
/** * **ntp.org** - pkgx package * * @domain `ntp.org` * @programs `ntpq`, `sntp`, `ntp-keygen`, `ntp-wait`, `ntpd`, ... (+5 more) * @version `4.2.8.17` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install +ntp.org -- $SHELL -i` * @dependencies `openssl.org^3` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.ntporg * console.log(pkg.name) // "ntp.org" * console.log(pkg.programs) // ["ntpq", "sntp", ...] * console.log(pkg.versions[0]) // "4.2.8.17" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/ntp-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const ntporgPackage: { /** * The display name of this package. */ name: 'ntp.org'; /** * The canonical domain name for this package. */ domain: 'ntp.org'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/ntp.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 +ntp.org -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['ntpq', 'sntp', 'ntp-keygen', 'ntp-wait', 'ntpd', 'ntpdate', 'ntpdc', 'ntptime', 'ntptrace', 'update-leap']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openssl.org^3']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.2.8.17']; aliases: readonly [] }; export type NtporgPackage = typeof ntporgPackage