UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.12 kB
/** * **toast** - Containerize your development and continuous integration environments. 🥂 * * @domain `crates.io/toast` * @programs `toast` * @version `0.47.7` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install toast` * @name `toast` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.toast * // Or access via domain * const samePkg = pantry.cratesiotoast * console.log(pkg === samePkg) // true * console.log(pkg.name) // "toast" * console.log(pkg.description) // "Containerize your development and continuous in..." * console.log(pkg.programs) // ["toast"] * console.log(pkg.versions[0]) // "0.47.7" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/toast.md * @see https://ts-pkgx.netlify.app/usage */ export declare const toastPackage: { /** * The display name of this package. */ name: 'toast'; /** * The canonical domain name for this package. */ domain: 'crates.io/toast'; /** * Brief description of what this package does. */ description: 'Containerize your development and continuous integration environments. 🥂'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/toast/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install toast'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['toast']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.47.7', '0.47.6', '0.47.5']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type ToastPackage = typeof toastPackage