/**
 * **mujs** - An embeddable Javascript interpreter in C.
 *
 * @domain `mujs.com`
 * @programs `mujs`, `mujs-pp`
 * @version `1.3.6` (4 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +mujs.com -- $SHELL -i`
 * @aliases `mujs`
 * @dependencies `linux: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 via alias (recommended)
 * const pkg = pantry.mujs
 * // Or access via domain
 * const samePkg = pantry.mujscom
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "mujs.com"
 * console.log(pkg.description) // "An embeddable Javascript interpreter in C."
 * console.log(pkg.programs)    // ["mujs", "mujs-pp"]
 * console.log(pkg.versions[0]) // "1.3.6" (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.com';
  /**
   * 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.com -- $SHELL -i';
  /**
   * 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 ['linux: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.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 ['mujs']
};
export type MujsPackage = typeof mujsPackage