UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

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