UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

64 lines 1.93 kB
/** * **cyrus-sasl** - pkgx package * * @domain `cyrusimap.org/cyrus-sasl` * @version `2.1.28` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install cyrus-sasl` * @name `cyrus-sasl` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.cyrussasl * // Or access via domain * const samePkg = pantry.cyrusimaporgcyrussasl * console.log(pkg === samePkg) // true * console.log(pkg.name) // "cyrus-sasl" * console.log(pkg.versions[0]) // "2.1.28" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/cyrusimap-org/cyrus-sasl.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cyrussaslPackage: { /** * The display name of this package. */ name: 'cyrus-sasl'; /** * The canonical domain name for this package. */ domain: 'cyrusimap.org/cyrus-sasl'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/cyrusimap.org/cyrus-sasl/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install cyrus-sasl'; programs: readonly []; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.1.28']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +cyrusimap.org/cyrus-sasl -- $SHELL -i'; launchpadInstallCommand: 'launchpad install cyrus-sasl' }; export type CyrussaslPackage = typeof cyrussaslPackage