ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.5 kB
TypeScript
/**
* **gleam** - ⭐️ A friendly language for building type-safe, scalable systems!
*
* @domain `gleam.run`
* @programs `gleam`
* @version `1.11.1` (44 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install gleam`
* @aliases `gleam`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.gleam
* // Or access via domain
* const samePkg = pantry.gleamrun
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "gleam.run"
* console.log(pkg.description) // "⭐️ A friendly language for building type-safe, ..."
* console.log(pkg.programs) // ["gleam"]
* console.log(pkg.versions[0]) // "1.11.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/gleam-run.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const gleamPackage: {
/**
* The display name of this package.
*/
name: 'gleam.run';
/**
* The canonical domain name for this package.
*/
domain: 'gleam.run';
/**
* Brief description of what this package does.
*/
description: '⭐️ A friendly language for building type-safe, scalable systems!';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gleam.run/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install gleam';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['gleam'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.11.1', '1.11.0', '1.10.0', '1.9.1', '1.9.0', '1.8.1', '1.8.0', '1.7.0', '1.6.3', '1.6.2', '1.6.1', '1.6.0', '1.5.1', '1.5.0', '1.4.1', '1.4.0', '1.3.2', '1.3.1', '1.3.0', '1.2.1', '1.2.0', '1.1.0', '1.0.0', '0.34.1', '0.34.0', '0.33.0', '0.32.4', '0.32.3', '0.32.2', '0.32.1', '0.32.0', '0.31.0', '0.30.5', '0.30.4', '0.30.3', '0.30.2', '0.30.1', '0.30.0', '0.29.0', '0.28.3', '0.28.2', '0.28.1', '0.28.0', '0.27.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['gleam']
};
export type GleamPackage = typeof gleamPackage