ts-pkgx
Version:
A library & CLI for managing packages
65 lines • 3.06 kB
TypeScript
/**
* **erlang.org** - Programming language for highly scalable real-time systems
*
* @domain `erlang.org`
* @programs `ct_run`, `dialyzer`, `epmd`, `erl`, `erlc`, ... (+4 more)
* @version `28.0.1` (75 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +erlang.org -- $SHELL -i`
* @dependencies `openssl.org^1.1`, `invisible-island.net/ncurses`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.erlangorg
* console.log(pkg.name) // "erlang.org"
* console.log(pkg.description) // "Programming language for highly scalable real-t..."
* console.log(pkg.programs) // ["ct_run", "dialyzer", ...]
* console.log(pkg.versions[0]) // "28.0.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/erlang-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const erlangorgPackage: {
/**
* The display name of this package.
*/
name: 'erlang.org';
/**
* The canonical domain name for this package.
*/
domain: 'erlang.org';
/**
* Brief description of what this package does.
*/
description: 'Programming language for highly scalable real-time systems';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/erlang.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 +erlang.org -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['ct_run', 'dialyzer', 'epmd', 'erl', 'erlc', 'escript', 'run_erl', 'to_erl', 'typer'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['openssl.org^1.1', 'invisible-island.net/ncurses'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['28.0.1', '28.0.0', '27.3.4.1', '27.3.4', '27.3.3', '27.3.2', '27.3.1', '27.3.0', '27.2.4', '27.2.3', '27.2.2', '27.2.1', '27.2.0', '27.1.3', '27.1.2', '27.1.1', '27.1.0', '27.0.1', '27.0.0', '26.2.5.9', '26.2.5.8', '26.2.5.7', '26.2.5.6', '26.2.5.5', '26.2.5.4', '26.2.5.3', '26.2.5.2', '26.2.5.13', '26.2.5.12', '26.2.5.11', '26.2.5.10', '26.2.5.1', '26.2.5', '26.2.4', '26.2.2', '26.2.1', '26.2.0', '26.1.2', '26.1.1', '26.1.0', '26.0.2', '26.0.1', '26.0.0', '25.3.2.9', '25.3.2.8', '25.3.2.7', '25.3.2.6', '25.3.2.5', '25.3.2.4', '25.3.2.3', '25.3.2.21', '25.3.2.20', '25.3.2.2', '25.3.2.19', '25.3.2.18', '25.3.2.17', '25.3.2.16', '25.3.2.15', '25.3.2.14', '25.3.2.13', '25.3.2.12', '25.3.2.11', '25.3.2.10', '25.3.2.1', '25.3.2', '25.3.1', '25.3.0', '25.2.2', '24.3.4.17', '24.3.4.16', '24.3.4.15', '24.3.4.14', '24.3.4.13', '24.3.4.12', '24.3.4.11'];
aliases: readonly []
};
export type ErlangorgPackage = typeof erlangorgPackage