ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.09 kB
TypeScript
/**
* **kaspa-miner** - A fast CPU miner for Kaspa
*
* @domain `crates.io/kaspa-miner`
* @programs `kaspa-miner`
* @version `0.2.5` (3 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install kaspa-miner`
* @name `kaspa-miner`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.kaspaminer
* // Or access via domain
* const samePkg = pantry.cratesiokaspaminer
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "kaspa-miner"
* console.log(pkg.description) // "A fast CPU miner for Kaspa"
* console.log(pkg.programs) // ["kaspa-miner"]
* console.log(pkg.versions[0]) // "0.2.5" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/crates-io/kaspa-miner.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const kaspaminerPackage: {
/**
* The display name of this package.
*/
name: 'kaspa-miner';
/**
* The canonical domain name for this package.
*/
domain: 'crates.io/kaspa-miner';
/**
* Brief description of what this package does.
*/
description: 'A fast CPU miner for Kaspa';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/kaspa-miner/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install kaspa-miner';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['kaspa-miner'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.2.5', '0.2.4', '0.2.3'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type KaspaminerPackage = typeof kaspaminerPackage