UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.28 kB
/** * **wasmer** - 🚀 Fast, secure, lightweight containers based on WebAssembly * * @domain `wasmer.io` * @programs `wasmer` * @version `6.0.1` (23 versions available) * @versions From newest version to oldest. * * @install `launchpad install wasmer` * @aliases `wasmer` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.wasmer * // Or access via domain * const samePkg = pantry.wasmerio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "wasmer.io" * console.log(pkg.description) // "🚀 Fast, secure, lightweight containers based o..." * console.log(pkg.programs) // ["wasmer"] * console.log(pkg.versions[0]) // "6.0.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/wasmer-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const wasmerPackage: { /** * The display name of this package. */ name: 'wasmer.io'; /** * The canonical domain name for this package. */ domain: 'wasmer.io'; /** * Brief description of what this package does. */ description: '🚀 Fast, secure, lightweight containers based on WebAssembly'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/wasmer.io/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install wasmer'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['wasmer']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['6.0.1', '6.0.0', '5.0.4', '5.0.3', '5.0.2', '5.0.1', '5.0.0', '4.4.0', '4.3.7', '4.3.6', '4.3.5', '4.3.4', '4.3.3', '4.3.2', '4.3.1', '4.3.0', '4.2.8', '4.2.7', '4.2.6', '4.2.5', '4.2.4', '4.2.3', '4.2.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['wasmer'] }; export type WasmerPackage = typeof wasmerPackage