/** * **tidy** - The granddaddy of HTML tools, with support for modern standards * * @domain `html-tidy.org` * @programs `tidy` * @version `5.8.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install html-tidy.org` * @homepage https://www.html-tidy.org/ * @buildDependencies `cmake.org` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.htmltidyorg * console.log(pkg.name) // "tidy" * console.log(pkg.description) // "The granddaddy of HTML tools, with support for ..." * console.log(pkg.programs) // ["tidy"] * console.log(pkg.versions[0]) // "5.8.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/html-tidy-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const htmltidyorgPackage: { /** * The display name of this package. */ name: 'tidy'; /** * The canonical domain name for this package. */ domain: 'html-tidy.org'; /** * Brief description of what this package does. */ description: 'The granddaddy of HTML tools, with support for modern standards'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/html-tidy.org/package.yml'; homepageUrl: 'https://www.html-tidy.org/'; githubUrl: 'https://github.com/htacg/tidy-html5'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install html-tidy.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +html-tidy.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install html-tidy.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['tidy']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['cmake.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.8.0']; aliases: readonly [] }; export type HtmltidyorgPackage = typeof htmltidyorgPackage