UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.41 kB
/** * **gradle** - Open-source build automation tool based on the Groovy and Kotlin DSL * * @domain `gradle.org` * @programs `gradle` * @version `8.14.2` (18 versions available) * @versions From newest version to oldest. * * @install `launchpad install gradle` * @aliases `gradle` * @dependencies `openjdk.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.gradle * // Or access via domain * const samePkg = pantry.gradleorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "gradle.org" * console.log(pkg.description) // "Open-source build automation tool based on the ..." * console.log(pkg.programs) // ["gradle"] * console.log(pkg.versions[0]) // "8.14.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gradle-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gradlePackage: { /** * The display name of this package. */ name: 'gradle.org'; /** * The canonical domain name for this package. */ domain: 'gradle.org'; /** * Brief description of what this package does. */ description: 'Open-source build automation tool based on the Groovy and Kotlin DSL'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gradle.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 gradle'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gradle']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openjdk.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['8.14.2', '8.14.1', '8.14.0', '8.13.0', '8.12.1', '8.12.0', '8.11.1', '8.11.0', '8.10.2', '8.10.1', '8.10.0', '8.9.0', '8.8.0', '8.7.0', '8.6.0', '8.5.0', '8.2.1', '7.6.5']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['gradle'] }; export type GradlePackage = typeof gradlePackage