UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

64 lines 2.41 kB
/** * **groovy-lang.org** - pkgx package * * @domain `groovy-lang.org` * @programs `grape`, `grape_completion`, `groovy`, `groovyc`, `groovyc_completion`, ... (+9 more) * @version `4.0.27` (22 versions available) * @versions From newest version to oldest. * * @install `launchpad install +groovy-lang.org -- $SHELL -i` * @dependencies `openjdk.org@17` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.groovylangorg * console.log(pkg.name) // "groovy-lang.org" * console.log(pkg.programs) // ["grape", "grape_completion", ...] * console.log(pkg.versions[0]) // "4.0.27" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/groovy-lang-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const groovylangorgPackage: { /** * The display name of this package. */ name: 'groovy-lang.org'; /** * The canonical domain name for this package. */ domain: 'groovy-lang.org'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/groovy-lang.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 +groovy-lang.org -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['grape', 'grape_completion', 'groovy', 'groovyc', 'groovyc_completion', 'groovy_completion', 'groovyConsole', 'groovyConsole_completion', 'groovydoc', 'groovydoc_completion', 'groovysh', 'groovysh_completion', 'java2groovy', 'startGroovy']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openjdk.org@17']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.0.27', '4.0.26', '4.0.25', '4.0.24', '4.0.23', '4.0.22', '4.0.21', '4.0.20', '4.0.18', '4.0.17', '4.0.16', '4.0.15', '4.0.14', '4.0.13', '3.0.25', '3.0.24', '3.0.23', '3.0.22', '3.0.21', '3.0.20', '3.0.19', '2.5.23']; aliases: readonly [] }; export type GroovylangorgPackage = typeof groovylangorgPackage