/** * **jenv** - Manage your Java environment * * @domain `jenv.be` * @programs `jenv` * @version `0.6.0` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install jenv.be` * @homepage http://www.jenv.be * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.jenvbe * console.log(pkg.name) // "jenv" * console.log(pkg.description) // "Manage your Java environment " * console.log(pkg.programs) // ["jenv"] * console.log(pkg.versions[0]) // "0.6.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/jenv-be.md * @see https://ts-pkgx.netlify.app/usage */ export declare const jenvbePackage: { /** * The display name of this package. */ name: 'jenv'; /** * The canonical domain name for this package. */ domain: 'jenv.be'; /** * Brief description of what this package does. */ description: 'Manage your Java environment '; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/jenv.be/package.yml'; homepageUrl: 'http://www.jenv.be'; githubUrl: 'https://github.com/jenv/jenv'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install jenv.be'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +jenv.be -- $SHELL -i'; launchpadInstallCommand: 'launchpad install jenv.be'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['jenv']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.6.0', '0.5.9', '0.5.8', '0.5.7', '0.5.6']; aliases: readonly [] }; export type JenvbePackage = typeof jenvbePackage