/** * **scala-lang** - The Scala 3 compiler, also known as Dotty. * * @domain `scala-lang.org` * @programs `scalac`, `scala`, `scala-cli`, `sbtn`, `amm` * @version `3.7.4` (13 versions available) * @versions From newest version to oldest. * * @install `launchpad install scala-lang.org` * @homepage https://dotty.epfl.ch * @dependencies `openjdk.org` * @buildDependencies `curl.se` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.scalalangorg * console.log(pkg.name) // "scala-lang" * console.log(pkg.description) // "The Scala 3 compiler, also known as Dotty." * console.log(pkg.programs) // ["scalac", "scala", ...] * console.log(pkg.versions[0]) // "3.7.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/scala-lang-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const scalalangorgPackage: { /** * The display name of this package. */ name: 'scala-lang'; /** * The canonical domain name for this package. */ domain: 'scala-lang.org'; /** * Brief description of what this package does. */ description: 'The Scala 3 compiler, also known as Dotty.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/scala-lang.org/package.yml'; homepageUrl: 'https://dotty.epfl.ch'; githubUrl: 'https://github.com/scala/scala3'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install scala-lang.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +scala-lang.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install scala-lang.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['scalac', 'scala', 'scala-cli', 'sbtn', 'amm']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['openjdk.org']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['curl.se']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.7.4', '3.7.3', '3.7.2', '3.7.1', '3.7.0', '3.6.4', '3.6.3', '3.6.2', '3.5.2', '3.5.1', '3.3.7', '3.3.6', '3.3.5']; aliases: readonly [] }; export type ScalalangorgPackage = typeof scalalangorgPackage