UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.5 kB
/** * **vale** - :pencil: A markup-aware linter for prose built with speed and extensibility in mind. * * @domain `vale.sh` * @programs `vale` * @version `3.12.0` (45 versions available) * @versions From newest version to oldest. * * @install `launchpad install vale` * @aliases `vale` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.vale * // Or access via domain * const samePkg = pantry.valesh * console.log(pkg === samePkg) // true * console.log(pkg.name) // "vale.sh" * console.log(pkg.description) // ":pencil: A markup-aware linter for prose built ..." * console.log(pkg.programs) // ["vale"] * console.log(pkg.versions[0]) // "3.12.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/vale-sh.md * @see https://ts-pkgx.netlify.app/usage */ export declare const valePackage: { /** * The display name of this package. */ name: 'vale.sh'; /** * 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: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install vale'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['vale']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['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']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['vale'] }; export type ValePackage = typeof valePackage