UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

46 lines 1.02 kB
/** * **tea.xyz** - pkgx package * * @domain `tea.xyz` * * @install `launchpad install tea.xyz` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.teaxyz * console.log(pkg.name) // "tea.xyz" * ``` * * @see https://ts-pkgx.netlify.app/packages/tea-xyz.md * @see https://ts-pkgx.netlify.app/usage */ export declare const teaxyzPackage: { /** * The display name of this package. */ name: 'tea.xyz'; /** * The canonical domain name for this package. */ domain: 'tea.xyz'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: ''; homepageUrl: ''; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install tea.xyz'; programs: readonly []; companions: readonly []; dependencies: readonly []; versions: readonly []; aliases: readonly [] }; export type TeaxyzPackage = typeof teaxyzPackage