/** * **rebar3** - Erlang build tool that makes it easy to compile and test Erlang applications and releases. * * @domain `rebar3.org` * @programs `rebar3` * @version `3.25.1` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install rebar3.org` * @homepage https://rebar3.org * @dependencies `erlang.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.rebar3org * console.log(pkg.name) // "rebar3" * console.log(pkg.description) // "Erlang build tool that makes it easy to compile..." * console.log(pkg.programs) // ["rebar3"] * console.log(pkg.versions[0]) // "3.25.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/rebar3-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const rebar3orgPackage: { /** * The display name of this package. */ name: 'rebar3'; /** * The canonical domain name for this package. */ domain: 'rebar3.org'; /** * Brief description of what this package does. */ description: 'Erlang build tool that makes it easy to compile and test Erlang applications and releases.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/rebar3.org/package.yml'; homepageUrl: 'https://rebar3.org'; githubUrl: 'https://github.com/erlang/rebar3'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install rebar3.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +rebar3.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install rebar3.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['rebar3']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['erlang.org']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.25.1', '3.25.0', '3.24.0', '3.23.0']; aliases: readonly [] }; export type Rebar3orgPackage = typeof rebar3orgPackage