UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.31 kB
/** * **rebar3** - Erlang build tool that makes it easy to compile and test Erlang applications and releases. * * @domain `rebar3.org` * @programs `rebar3` * @version `3.25.0` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install rebar3` * @aliases `rebar3` * @dependencies `erlang.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.rebar3 * // Or access via domain * const samePkg = pantry.rebar3org * console.log(pkg === samePkg) // true * console.log(pkg.name) // "rebar3.org" * 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.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/rebar3-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const rebar3Package: { /** * The display name of this package. */ name: 'rebar3.org'; /** * 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: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install rebar3'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['rebar3']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['erlang.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.25.0', '3.24.0', '3.23.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['rebar3'] }; export type Rebar3Package = typeof rebar3Package