/** * **mkdocs** - Project documentation with Markdown. * * @domain `mkdocs.org` * @programs `mkdocs` * @version `1.6.1` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install mkdocs.org` * @homepage https://www.mkdocs.org * @dependencies `python.org>=3<3.12` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.mkdocsorg * console.log(pkg.name) // "mkdocs" * console.log(pkg.description) // "Project documentation with Markdown." * console.log(pkg.programs) // ["mkdocs"] * console.log(pkg.versions[0]) // "1.6.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/mkdocs-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const mkdocsorgPackage: { /** * The display name of this package. */ name: 'mkdocs'; /** * The canonical domain name for this package. */ domain: 'mkdocs.org'; /** * Brief description of what this package does. */ description: 'Project documentation with Markdown.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/mkdocs.org/package.yml'; homepageUrl: 'https://www.mkdocs.org'; githubUrl: 'https://github.com/mkdocs/mkdocs'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install mkdocs.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +mkdocs.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install mkdocs.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['mkdocs']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['python.org>=3<3.12']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.6.1', '1.6.0', '1.5.3']; aliases: readonly [] }; export type MkdocsorgPackage = typeof mkdocsorgPackage