ts-pkgx
Version:
A library & CLI for managing packages
77 lines • 2.55 kB
TypeScript
/**
* **mujs** - An embeddable Javascript interpreter in C.
*
* @domain `mujs.com`
* @programs `mujs`, `mujs-pp`
* @version `1.3.7` (5 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install mujs`
* @name `mujs`
* @dependencies `gnu.org/readline~8.1`, `linux:invisible-island.net/ncurses` (includes OS-specific dependencies with `os:package` format)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.mujs
* // Or access via domain
* const samePkg = pantry.mujscom
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "mujs"
* console.log(pkg.description) // "An embeddable Javascript interpreter in C."
* console.log(pkg.programs) // ["mujs", "mujs-pp"]
* console.log(pkg.versions[0]) // "1.3.7" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/mujs-com.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const mujsPackage: {
/**
* The display name of this package.
*/
name: 'mujs';
/**
* The canonical domain name for this package.
*/
domain: 'mujs.com';
/**
* Brief description of what this package does.
*/
description: 'An embeddable Javascript interpreter in C.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/mujs.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 mujs';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['mujs', 'mujs-pp'];
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/readline~8.1', 'linux:invisible-island.net/ncurses'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.3.7', '1.3.6', '1.3.5', '1.3.4', '1.3.3'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +mujs.com -- $SHELL -i';
launchpadInstallCommand: 'launchpad install mujs'
};
export type MujsPackage = typeof mujsPackage