UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.26 kB
/** * **jumppad** - Modern cloud native development environments * * @domain `jumppad.dev` * @programs `jumppad` * @version `0.20.1` (20 versions available) * @versions From newest version to oldest. * * @install `launchpad install jumppad` * @aliases `jumppad` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.jumppad * // Or access via domain * const samePkg = pantry.jumppaddev * console.log(pkg === samePkg) // true * console.log(pkg.name) // "jumppad.dev" * console.log(pkg.description) // "Modern cloud native development environments" * console.log(pkg.programs) // ["jumppad"] * console.log(pkg.versions[0]) // "0.20.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/jumppad-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const jumppadPackage: { /** * The display name of this package. */ name: 'jumppad.dev'; /** * The canonical domain name for this package. */ domain: 'jumppad.dev'; /** * Brief description of what this package does. */ description: 'Modern cloud native development environments'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/jumppad.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 jumppad'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['jumppad']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.20.1', '0.20.0', '0.19.0', '0.18.1', '0.18.0', '0.17.1', '0.17.0', '0.16.1', '0.16.0', '0.15.0', '0.14.0', '0.13.3', '0.13.2', '0.13.1', '0.13.0', '0.12.1', '0.12.0', '0.11.2', '0.11.1', '0.11.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['jumppad'] }; export type JumppadPackage = typeof jumppadPackage