UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.64 kB
/** * **moon** - A build system and monorepo management tool for the web ecosystem, written in Rust. * * @domain `moonrepo.dev/moon` * @programs `moon` * @version `1.37.3` (54 versions available) * @versions From newest version to oldest. * * @install `launchpad install moon` * @name `moon` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.moon * // Or access via domain * const samePkg = pantry.moonrepodevmoon * console.log(pkg === samePkg) // true * console.log(pkg.name) // "moon" * console.log(pkg.description) // "A build system and monorepo management tool for..." * console.log(pkg.programs) // ["moon"] * console.log(pkg.versions[0]) // "1.37.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/moonrepo-dev/moon.md * @see https://ts-pkgx.netlify.app/usage */ export declare const moonPackage: { /** * The display name of this package. */ name: 'moon'; /** * The canonical domain name for this package. */ domain: 'moonrepo.dev/moon'; /** * Brief description of what this package does. */ description: 'A build system and monorepo management tool for the web ecosystem, written in Rust.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/moonrepo.dev/moon/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install moon'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['moon']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.37.3', '1.37.2', '1.37.1', '1.37.0', '1.36.3', '1.36.2', '1.36.1', '1.36.0', '1.35.7', '1.35.6', '1.35.5', '1.35.4', '1.35.3', '1.35.2', '1.35.1', '1.35.0', '1.34.3', '1.34.2', '1.34.1', '1.34.0', '1.33.3', '1.33.2', '1.33.1', '1.33.0', '1.32.9', '1.32.8', '1.32.7', '1.32.6', '1.32.5', '1.32.4', '1.32.3', '1.32.2', '1.32.1', '1.32.0', '1.31.3', '1.31.2', '1.31.1', '1.31.0', '1.30.6', '1.30.5', '1.30.4', '1.30.3', '1.30.2', '1.30.1', '1.30.0', '1.29.4', '1.29.3', '1.29.2', '1.29.1', '1.29.0', '1.28.3', '1.28.2', '1.28.1', '1.25.4']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type MoonPackage = typeof moonPackage