UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.07 kB
/** * **jenv** - Manage your Java environment * * @domain `jenv.be` * @programs `jenv` * @version `0.5.9` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install jenv` * @name `jenv` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.jenv * // Or access via domain * const samePkg = pantry.jenvbe * console.log(pkg === samePkg) // true * console.log(pkg.name) // "jenv" * console.log(pkg.description) // "Manage your Java environment" * console.log(pkg.programs) // ["jenv"] * console.log(pkg.versions[0]) // "0.5.9" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/jenv-be.md * @see https://ts-pkgx.netlify.app/usage */ export declare const jenvPackage: { /** * 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: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install jenv'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['jenv']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.5.9', '0.5.8', '0.5.7', '0.5.6']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) jenv -- $SHELL -i'; launchpadInstallCommand: 'launchpad install jenv' }; export type JenvPackage = typeof jenvPackage