UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

79 lines 2.47 kB
/** * **mun** - Source code for the Mun language and runtime. * * @domain `mun-lang.org` * @programs `mun` * @version `0.5.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install mun` * @aliases `mun` * @dependencies `invisible-island.net/ncurses@6`, `sourceware.org/libffi@3`, `gnome.org/libxml2@2` * @companions `llvm.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.mun * // Or access via domain * const samePkg = pantry.munlangorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "mun-lang.org" * console.log(pkg.description) // "Source code for the Mun language and runtime." * console.log(pkg.programs) // ["mun"] * console.log(pkg.versions[0]) // "0.5.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/mun-lang-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const munPackage: { /** * The display name of this package. */ name: 'mun-lang.org'; /** * The canonical domain name for this package. */ domain: 'mun-lang.org'; /** * Brief description of what this package does. */ description: 'Source code for the Mun language and runtime.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/mun-lang.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install mun'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['mun']; /** * Related packages that work well with this package. * Consider installing these for enhanced functionality. */ companions: readonly ['llvm.org']; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['invisible-island.net/ncurses@6', 'sourceware.org/libffi@3', 'gnome.org/libxml2@2']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.5.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['mun'] }; export type MunPackage = typeof munPackage