ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.17 kB
TypeScript
/**
* **gist** - Potentially the best command line gister.
*
* @domain `rubygems.org/gist`
* @programs `gist`
* @version `6.0.0` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install gist`
* @name `gist`
* @dependencies `ruby-lang.org^3`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.gist
* // Or access via domain
* const samePkg = pantry.rubygemsorggist
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "gist"
* console.log(pkg.description) // "Potentially the best command line gister."
* console.log(pkg.programs) // ["gist"]
* console.log(pkg.versions[0]) // "6.0.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/rubygems-org/gist.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const gistPackage: {
/**
* The display name of this package.
*/
name: 'gist';
/**
* The canonical domain name for this package.
*/
domain: 'rubygems.org/gist';
/**
* Brief description of what this package does.
*/
description: 'Potentially the best command line gister.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/rubygems.org/gist/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install gist';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['gist'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['ruby-lang.org^3'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['6.0.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type GistPackage = typeof gistPackage