UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.34 kB
/** * **mdbook** - Create book from markdown files. Like Gitbook but implemented in Rust * * @domain `rust-lang.github.io/mdBook` * @programs `mdbook` * @version `0.4.51` (18 versions available) * @versions From newest version to oldest. * * @install `launchpad install mdbook` * @aliases `mdbook` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.mdbook * // Or access via domain * const samePkg = pantry.rustlanggithubiomdbook * console.log(pkg === samePkg) // true * console.log(pkg.name) // "mdBook" * console.log(pkg.description) // "Create book from markdown files. Like Gitbook b..." * console.log(pkg.programs) // ["mdbook"] * console.log(pkg.versions[0]) // "0.4.51" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/rust-lang-github-io/mdBook.md * @see https://ts-pkgx.netlify.app/usage */ export declare const mdbookPackage: { /** * The display name of this package. */ name: 'mdBook'; /** * The canonical domain name for this package. */ domain: 'rust-lang.github.io/mdBook'; /** * Brief description of what this package does. */ description: 'Create book from markdown files. Like Gitbook but implemented in Rust'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/rust-lang.github.io/mdBook/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install mdbook'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['mdbook']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.4.51', '0.4.50', '0.4.49', '0.4.48', '0.4.47', '0.4.46', '0.4.45', '0.4.44', '0.4.43', '0.4.42', '0.4.41', '0.4.40', '0.4.39', '0.4.38', '0.4.37', '0.4.36', '0.4.35', '0.4.34']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['mdbook'] }; export type MdbookPackage = typeof mdbookPackage