/** * **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.com` * @homepage https://cli.doctave.com * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.doctavecom * console.log(pkg.name) // "doctave" * 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 doctavecomPackage: { /** * The display name of this package. */ name: 'doctave'; /** * 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: 'https://cli.doctave.com'; githubUrl: 'https://github.com/Doctave/doctave'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install doctave.com'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +doctave.com -- $SHELL -i'; launchpadInstallCommand: 'launchpad install doctave.com'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['doctave']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.4.2']; aliases: readonly [] }; export type DoctavecomPackage = typeof doctavecomPackage