UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

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