UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.33 kB
/** * **sbt** - sbt, the interactive build tool * * @domain `scala-sbt.org` * @programs `sbt` * @version `1.11.2` (21 versions available) * @versions From newest version to oldest. * * @install `launchpad install sbt` * @aliases `sbt` * @dependencies `openjdk.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.sbt * // Or access via domain * const samePkg = pantry.scalasbtorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "scala-sbt.org" * console.log(pkg.description) // "sbt, the interactive build tool" * console.log(pkg.programs) // ["sbt"] * console.log(pkg.versions[0]) // "1.11.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/scala-sbt-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const sbtPackage: { /** * The display name of this package. */ name: 'scala-sbt.org'; /** * The canonical domain name for this package. */ domain: 'scala-sbt.org'; /** * Brief description of what this package does. */ description: 'sbt, the interactive build tool'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/scala-sbt.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 sbt'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['sbt']; 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 ['1.11.2', '1.11.1', '1.11.0', '1.10.11', '1.10.10', '1.10.9', '1.10.7', '1.10.6', '1.10.5', '1.10.4', '1.10.3', '1.10.2', '1.10.1', '1.10.0', '1.9.9', '1.9.8', '1.9.7', '1.9.6', '1.9.5', '1.9.4', '1.9.3']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['sbt'] }; export type SbtPackage = typeof sbtPackage