ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.15 kB
TypeScript
/**
* **air** - ☁️ Live reload for Go apps
*
* @domain `github.com/cosmtrek/air`
* @programs `air`
* @version `1.62.0` (16 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install air`
* @name `air`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.air
* // Or access via domain
* const samePkg = pantry.githubcomcosmtrekair
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "air"
* console.log(pkg.description) // "☁️ Live reload for Go apps"
* console.log(pkg.programs) // ["air"]
* console.log(pkg.versions[0]) // "1.62.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/cosmtrek/air.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const airPackage: {
/**
* The display name of this package.
*/
name: 'air';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/cosmtrek/air';
/**
* Brief description of what this package does.
*/
description: '☁️ Live reload for Go apps';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/cosmtrek/air/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install air';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['air'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.62.0', '1.61.7', '1.61.6', '1.61.5', '1.61.4', '1.61.3', '1.61.1', '1.61.0', '1.60.0', '1.52.3', '1.52.2', '1.52.1', '1.52.0', '1.51.0', '1.50.0', '1.49.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type AirPackage = typeof airPackage