UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.62 kB
/** * **rubocop** - A Ruby static code analyzer and formatter, based on the community Ruby style guide. * * @domain `rubocop.org` * @programs `rubocop` * @version `1.77.0` (28 versions available) * @versions From newest version to oldest. * * @install `launchpad install rubocop` * @aliases `rubocop` * @dependencies `ruby-lang.org>=3.1<3.3.7`, `rubygems.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.rubocop * // Or access via domain * const samePkg = pantry.rubocoporg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "rubocop.org" * console.log(pkg.description) // "A Ruby static code analyzer and formatter, base..." * console.log(pkg.programs) // ["rubocop"] * console.log(pkg.versions[0]) // "1.77.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/rubocop-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const rubocopPackage: { /** * The display name of this package. */ name: 'rubocop.org'; /** * The canonical domain name for this package. */ domain: 'rubocop.org'; /** * Brief description of what this package does. */ description: 'A Ruby static code analyzer and formatter, based on the community Ruby style guide.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/rubocop.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install rubocop'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['rubocop']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['ruby-lang.org>=3.1<3.3.7', 'rubygems.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.77.0', '1.76.2', '1.76.1', '1.76.0', '1.75.8', '1.75.7', '1.75.6', '1.75.5', '1.75.4', '1.75.3', '1.75.2', '1.75.1', '1.75.0', '1.74.0', '1.73.2', '1.73.1', '1.73.0', '1.72.2', '1.72.1', '1.72.0', '1.71.2', '1.71.1', '1.71.0', '1.70.0', '1.69.2', '1.69.1', '1.69.0', '1.68.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['rubocop'] }; export type RubocopPackage = typeof rubocopPackage