/** * **prettier** - Code formatter for JavaScript, CSS, JSON, GraphQL, Markdown, YAML * * @domain `prettier.io` * @programs `prettier` * @version `3.7.4` (20 versions available) * @versions From newest version to oldest. * * @install `launchpad install prettier.io` * @homepage https://prettier.io/ * @dependencies `nodejs.org^20` * @buildDependencies `npmjs.com@^10` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.prettierio * console.log(pkg.name) // "prettier" * console.log(pkg.description) // "Code formatter for JavaScript, CSS, JSON, Graph..." * console.log(pkg.programs) // ["prettier"] * console.log(pkg.versions[0]) // "3.7.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/prettier-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const prettierioPackage: { /** * The display name of this package. */ name: 'prettier'; /** * The canonical domain name for this package. */ domain: 'prettier.io'; /** * Brief description of what this package does. */ description: 'Code formatter for JavaScript, CSS, JSON, GraphQL, Markdown, YAML'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/prettier.io/package.yml'; homepageUrl: 'https://prettier.io/'; githubUrl: 'https://github.com/prettier/prettier'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install prettier.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +prettier.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install prettier.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['prettier']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['nodejs.org^20']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['npmjs.com@^10']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.7.4', '3.7.3', '3.7.2', '3.7.1', '3.7.0', '3.6.2', '3.6.1', '3.6.0', '3.5.3', '3.5.2', '3.5.1', '3.5.0', '3.4.2', '3.4.1', '3.4.0', '3.3.3', '3.3.2', '3.3.1', '3.3.0', '3.2.5']; aliases: readonly [] }; export type PrettierioPackage = typeof prettierioPackage