/** * **fmt** - A modern formatting library * * @domain `fmt.dev` * @version `12.1.0` (17 versions available) * @versions From newest version to oldest. * * @install `launchpad install fmt.dev` * @homepage https://fmt.dev * @buildDependencies `cmake.org@^3` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.fmtdev * console.log(pkg.name) // "fmt" * console.log(pkg.description) // "A modern formatting library" * console.log(pkg.versions[0]) // "12.1.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/fmt-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const fmtdevPackage: { /** * The display name of this package. */ name: 'fmt'; /** * The canonical domain name for this package. */ domain: 'fmt.dev'; /** * Brief description of what this package does. */ description: 'A modern formatting library'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/fmt.dev/package.yml'; homepageUrl: 'https://fmt.dev'; githubUrl: 'https://github.com/fmtlib/fmt'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install fmt.dev'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +fmt.dev -- $SHELL -i'; launchpadInstallCommand: 'launchpad install fmt.dev'; programs: readonly []; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['cmake.org@^3']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['12.1.0', '12.0.0', '11.2.0', '11.1.4', '11.1.3', '11.1.2', '11.1.1', '11.1.0', '11.0.2', '11.0.1', '11.0.0', '10.2.1', '10.2.0', '10.1.1', '10.1.0', '10.0.0', '9.1.0']; aliases: readonly [] }; export type FmtdevPackage = typeof fmtdevPackage