ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.29 kB
TypeScript
/**
* **gollum** - An n:m message multiplexer written in Go
*
* @domain `github.com/gollum/gollum`
* @programs `gollum`
* @version `6.1.0` (4 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install gollum`
* @name `gollum`
* @dependencies `ruby-lang.org^3.1`, `rubygems.org~3.3`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.gollum
* // Or access via domain
* const samePkg = pantry.githubcomgollumgollum
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "gollum"
* console.log(pkg.description) // "An n:m message multiplexer written in Go"
* console.log(pkg.programs) // ["gollum"]
* console.log(pkg.versions[0]) // "6.1.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/gollum/gollum.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const gollumPackage: {
/**
* The display name of this package.
*/
name: 'gollum';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/gollum/gollum';
/**
* Brief description of what this package does.
*/
description: 'An n:m message multiplexer written in Go';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/gollum/gollum/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install gollum';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['gollum'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['ruby-lang.org^3.1', 'rubygems.org~3.3'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['6.1.0', '6.0.1', '6.0.0', '5.3.2'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type GollumPackage = typeof gollumPackage