UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

61 lines 1.98 kB
/** * **github.com/luvit/luv** - Bare libuv bindings for lua * * @domain `github.com/luvit/luv` * @version `1.45.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/luvit/luv` * @dependencies `libuv.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomluvitluv * console.log(pkg.name) // "github.com/luvit/luv" * console.log(pkg.description) // "Bare libuv bindings for lua" * console.log(pkg.versions[0]) // "1.45.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/luvit/luv.md * @see https://ts-pkgx.netlify.app/usage */ export declare const githubcomluvitluvPackage: { /** * The display name of this package. */ name: 'github.com/luvit/luv'; /** * The canonical domain name for this package. */ domain: 'github.com/luvit/luv'; /** * Brief description of what this package does. */ description: 'Bare libuv bindings for lua'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/luvit/luv/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/luvit/luv'; programs: readonly []; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['libuv.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.45.0']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/luvit/luv -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/luvit/luv' }; export type GithubcomluvitluvPackage = typeof githubcomluvitluvPackage