UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 1.97 kB
/** * **pop** - Send emails from your terminal 📬 * * @domain `charm.sh/pop` * @programs `pop` * @version `0.2.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install pop` * @name `pop` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.pop * // Or access via domain * const samePkg = pantry.charmshpop * console.log(pkg === samePkg) // true * console.log(pkg.name) // "pop" * console.log(pkg.description) // "Send emails from your terminal 📬" * console.log(pkg.programs) // ["pop"] * console.log(pkg.versions[0]) // "0.2.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/charm-sh/pop.md * @see https://ts-pkgx.netlify.app/usage */ export declare const popPackage: { /** * The display name of this package. */ name: 'pop'; /** * The canonical domain name for this package. */ domain: 'charm.sh/pop'; /** * Brief description of what this package does. */ description: 'Send emails from your terminal 📬'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/charm.sh/pop/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install pop'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['pop']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.2.0', '0.1.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type PopPackage = typeof popPackage