UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.32 kB
/** * **wasm-pack** - 📦✨ your favorite rust -> wasm workflow tool! * * @domain `crates.io/wasm-pack` * @programs `wasm-pack` * @version `0.13.1` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install wasm-pack` * @name `wasm-pack` * @dependencies `rust-lang.org`, `rust-lang.org/cargo` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.wasmpack * // Or access via domain * const samePkg = pantry.cratesiowasmpack * console.log(pkg === samePkg) // true * console.log(pkg.name) // "wasm-pack" * console.log(pkg.description) // "📦✨ your favorite rust -> wasm workflow tool!" * console.log(pkg.programs) // ["wasm-pack"] * console.log(pkg.versions[0]) // "0.13.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/wasm-pack.md * @see https://ts-pkgx.netlify.app/usage */ export declare const wasmpackPackage: { /** * The display name of this package. */ name: 'wasm-pack'; /** * The canonical domain name for this package. */ domain: 'crates.io/wasm-pack'; /** * Brief description of what this package does. */ description: '📦✨ your favorite rust -> wasm workflow tool!'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/wasm-pack/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install wasm-pack'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['wasm-pack']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['rust-lang.org', 'rust-lang.org/cargo']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.13.1', '0.13.0', '0.12.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type WasmpackPackage = typeof wasmpackPackage