UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.22 kB
/** * **luajit** - Mirror of the LuaJIT git repository * * @domain `luajit.org` * @programs `luajit`, `luajit-{{version.marketing}}.` * @version `2.1.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install luajit` * @name `luajit` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.luajit * // Or access via domain * const samePkg = pantry.luajitorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "luajit" * console.log(pkg.description) // "Mirror of the LuaJIT git repository" * console.log(pkg.programs) // ["luajit", "luajit-{{version.marketing}}."] * console.log(pkg.versions[0]) // "2.1.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/luajit-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const luajitPackage: { /** * The display name of this package. */ name: 'luajit'; /** * The canonical domain name for this package. */ domain: 'luajit.org'; /** * Brief description of what this package does. */ description: 'Mirror of the LuaJIT git repository'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/luajit.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 luajit'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['luajit', 'luajit-{{version.marketing}}.']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.1.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +luajit.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install luajit' }; export type LuajitPackage = typeof luajitPackage