ts-pkgx
Version:
A library & CLI for managing packages
75 lines • 2.49 kB
TypeScript
/**
* **jags** - Just Another Gibbs Sampler for Bayesian MCMC simulation
*
* @domain `mcmc-jags.sourceforge.io`
* @programs `jags`
* @version `4.3.2` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install jags`
* @aliases `jags`
* @dependencies `gnu.org/gcc`, `linux:netlib.org/lapack^3` (includes OS-specific dependencies with `os:package` format)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.jags
* // Or access via domain
* const samePkg = pantry.mcmcjagssourceforgeio
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "mcmc-jags.sourceforge.io"
* console.log(pkg.description) // "Just Another Gibbs Sampler for Bayesian MCMC si..."
* console.log(pkg.programs) // ["jags"]
* console.log(pkg.versions[0]) // "4.3.2" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/mcmc-jags-sourceforge-io.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const jagsPackage: {
/**
* The display name of this package.
*/
name: 'mcmc-jags.sourceforge.io';
/**
* The canonical domain name for this package.
*/
domain: 'mcmc-jags.sourceforge.io';
/**
* Brief description of what this package does.
*/
description: 'Just Another Gibbs Sampler for Bayesian MCMC simulation';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/mcmc-jags.sourceforge.io/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install jags';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['jags'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
* OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`).
*/
dependencies: readonly ['gnu.org/gcc', 'linux:netlib.org/lapack^3'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['4.3.2'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['jags']
};
export type JagsPackage = typeof jagsPackage