UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.17 kB
/** * **soldeer** - Solidity Package Manager written in rust and integrated into Foundry (forge soldeer ...) * * @domain `soldeer.xyz` * @programs `soldeer` * @version `0.5.4` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install soldeer` * @aliases `soldeer` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.soldeer * // Or access via domain * const samePkg = pantry.soldeerxyz * console.log(pkg === samePkg) // true * console.log(pkg.name) // "soldeer.xyz" * console.log(pkg.description) // "Solidity Package Manager written in rust and in..." * console.log(pkg.programs) // ["soldeer"] * console.log(pkg.versions[0]) // "0.5.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/soldeer-xyz.md * @see https://ts-pkgx.netlify.app/usage */ export declare const soldeerPackage: { /** * The display name of this package. */ name: 'soldeer.xyz'; /** * The canonical domain name for this package. */ domain: 'soldeer.xyz'; /** * Brief description of what this package does. */ description: 'Solidity Package Manager written in rust and integrated into Foundry (forge soldeer ...)'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/soldeer.xyz/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install soldeer'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['soldeer']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.5.4', '0.5.3', '0.5.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['soldeer'] }; export type SoldeerPackage = typeof soldeerPackage