UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.25 kB
/** * **raccoin** - Crypto Portfolio and Tax Reporting Tool * * @domain `raccoin.org` * @programs `raccoin` * @version `0.2.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install raccoin` * @aliases `raccoin` * @dependencies `gnu.org/libiconv^1`, `openssl.org^1.1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.raccoin * // Or access via domain * const samePkg = pantry.raccoinorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "raccoin.org" * console.log(pkg.description) // "Crypto Portfolio and Tax Reporting Tool" * console.log(pkg.programs) // ["raccoin"] * console.log(pkg.versions[0]) // "0.2.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/raccoin-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const raccoinPackage: { /** * The display name of this package. */ name: 'raccoin.org'; /** * The canonical domain name for this package. */ domain: 'raccoin.org'; /** * Brief description of what this package does. */ description: 'Crypto Portfolio and Tax Reporting Tool'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/raccoin.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install raccoin'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['raccoin']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['gnu.org/libiconv^1', 'openssl.org^1.1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.2.0', '0.1.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['raccoin'] }; export type RaccoinPackage = typeof raccoinPackage