UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.45 kB
/** * **amber** - Crystal web framework. Bare metal performance, productivity and happiness * * @domain `amber-lang.com` * @programs `amber` * @version `0.4.0` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install amber` * @aliases `amber` * @companions `gnu.org/bc`, `gnu.org/sed`, `gnu.org/coreutils`, ... (+2 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.amber * // Or access via domain * const samePkg = pantry.amberlangcom * console.log(pkg === samePkg) // true * console.log(pkg.name) // "amber-lang.com" * console.log(pkg.description) // "Crystal web framework. Bare metal performance, ..." * console.log(pkg.programs) // ["amber"] * console.log(pkg.versions[0]) // "0.4.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/amber-lang-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const amberPackage: { /** * The display name of this package. */ name: 'amber-lang.com'; /** * The canonical domain name for this package. */ domain: 'amber-lang.com'; /** * Brief description of what this package does. */ description: 'Crystal web framework. Bare metal performance, productivity and happiness'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/amber-lang.com/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install amber'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['amber']; /** * Related packages that work well with this package. * Consider installing these for enhanced functionality. */ companions: readonly ['gnu.org/bc', 'gnu.org/sed', 'gnu.org/coreutils', 'gnu.org/gawk', 'gnu.org/bash']; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.4.0', '0.3.5', '0.3.4', '0.3.3', '0.3.2', '0.3.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['amber'] }; export type AmberPackage = typeof amberPackage