ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.42 kB
TypeScript
/**
* **meson** - Fast and user friendly build system
*
* @domain `mesonbuild.com`
* @programs `meson`
* @version `1.8.2` (28 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install meson`
* @aliases `meson`
* @dependencies `pkgx.sh^1`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.meson
* // Or access via domain
* const samePkg = pantry.mesonbuildcom
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "mesonbuild.com"
* console.log(pkg.description) // "Fast and user friendly build system"
* console.log(pkg.programs) // ["meson"]
* console.log(pkg.versions[0]) // "1.8.2" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/mesonbuild-com.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const mesonPackage: {
/**
* The display name of this package.
*/
name: 'mesonbuild.com';
/**
* The canonical domain name for this package.
*/
domain: 'mesonbuild.com';
/**
* Brief description of what this package does.
*/
description: 'Fast and user friendly build system';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/mesonbuild.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 meson';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['meson'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['pkgx.sh^1'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.8.2', '1.8.1', '1.8.0', '1.7.2', '1.7.1', '1.7.0', '1.6.1', '1.6.0', '1.5.2', '1.5.1', '1.5.0', '1.4.2', '1.4.1', '1.4.0', '1.3.2', '1.3.1', '1.3.0', '1.2.3', '1.2.2', '1.2.0', '1.1.1', '1.1.0', '1.0.2', '1.0.1', '1.0.0', '0.64.1', '0.64.0', '0.63.3'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['meson']
};
export type MesonPackage = typeof mesonPackage