/** * **vale** - :pencil: A markup-aware linter for prose built with speed and extensibility in mind. * * @domain `vale.sh` * @programs `vale` * @version `3.13.0` (46 versions available) * @versions From newest version to oldest. * * @install `launchpad install vale.sh` * @homepage https://vale.sh/ * @buildDependencies `go.dev@~1.21` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.valesh * console.log(pkg.name) // "vale" * console.log(pkg.description) // ":pencil: A markup-aware linter for prose built ..." * console.log(pkg.programs) // ["vale"] * console.log(pkg.versions[0]) // "3.13.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/vale-sh.md * @see https://ts-pkgx.netlify.app/usage */ export declare const valeshPackage: { /** * The display name of this package. */ name: 'vale'; /** * The canonical domain name for this package. */ domain: 'vale.sh'; /** * Brief description of what this package does. */ description: ':pencil: A markup-aware linter for prose built with speed and extensibility in mind.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/vale.sh/package.yml'; homepageUrl: 'https://vale.sh/'; githubUrl: 'https://github.com/errata-ai/vale'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install vale.sh'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +vale.sh -- $SHELL -i'; launchpadInstallCommand: 'launchpad install vale.sh'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['vale']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@~1.21']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.13.0', '3.12.0', '3.11.2', '3.11.1', '3.11.0', '3.10.0', '3.9.6', '3.9.5', '3.9.4', '3.9.3', '3.9.2', '3.9.1', '3.9.0', '3.8.0', '3.7.1', '3.7.0', '3.6.1', '3.6.0', '3.5.0', '3.4.2', '3.4.1', '3.4.0', '3.3.1', '3.3.0', '3.2.2', '3.2.1', '3.2.0', '3.1.0', '3.0.7', '3.0.6', '3.0.5', '3.0.4', '3.0.3', '3.0.2', '3.0.1', '3.0.0', '2.30.0', '2.29.7', '2.29.6', '2.29.5', '2.29.4', '2.29.3', '2.29.2', '2.29.1', '2.29.0', '2.28.3']; aliases: readonly [] }; export type ValeshPackage = typeof valeshPackage