UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.87 kB
/** * **jbang** - Unleash the power of Java - JBang Lets Students, Educators and Professional Developers create, edit and run self-contained source-only Java programs with unprecedented ease. * * @domain `jbang.dev` * @programs `jbang` * @version `0.129.0` (31 versions available) * @versions From newest version to oldest. * * @install `launchpad install jbang` * @name `jbang` * @dependencies `openjdk.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.jbang * // Or access via domain * const samePkg = pantry.jbangdev * console.log(pkg === samePkg) // true * console.log(pkg.name) // "jbang" * console.log(pkg.description) // "Unleash the power of Java - JBang Lets Students..." * console.log(pkg.programs) // ["jbang"] * console.log(pkg.versions[0]) // "0.129.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/jbang-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const jbangPackage: { /** * The display name of this package. */ name: 'jbang'; /** * The canonical domain name for this package. */ domain: 'jbang.dev'; /** * Brief description of what this package does. */ description: 'Unleash the power of Java - JBang Lets Students, Educators and Professional Developers create, edit and run self-contained source-only Java programs with unprecedented ease.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/jbang.dev/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install jbang'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['jbang']; 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 ['0.129.0', '0.128.7', '0.128.6', '0.128.5', '0.128.2', '0.128.1', '0.128.0', '0.127.18', '0.127.15', '0.126.3', '0.126.2', '0.126.1', '0.126.0', '0.125.1', '0.125.0', '0.124.0', '0.123.0', '0.122.0', '0.121.0', '0.120.4', '0.119.0', '0.118.0', '0.117.1', '0.117.0', '0.116.0', '0.115.0', '0.114.0', '0.113.0', '0.112.4', '0.111.0', '0.110.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) jbang -- $SHELL -i'; launchpadInstallCommand: 'launchpad install jbang' }; export type JbangPackage = typeof jbangPackage