UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.46 kB
/** * **arkade** - Open Source Marketplace For Developer Tools * * @domain `arkade.dev` * @programs `arkade` * @version `0.11.39` (37 versions available) * @versions From newest version to oldest. * * @install `launchpad install arkade` * @aliases `arkade`, `Arkade` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.arkade * // Or access via domain * const samePkg = pantry.arkadedev * console.log(pkg === samePkg) // true * console.log(pkg.name) // "arkade.dev" * console.log(pkg.description) // "Open Source Marketplace For Developer Tools" * console.log(pkg.programs) // ["arkade"] * console.log(pkg.versions[0]) // "0.11.39" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/arkade-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const arkadePackage: { /** * The display name of this package. */ name: 'arkade.dev'; /** * The canonical domain name for this package. */ domain: 'arkade.dev'; /** * Brief description of what this package does. */ description: 'Open Source Marketplace For Developer Tools'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/arkade.dev/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/alexellis/arkade'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install arkade'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['arkade']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.11.39', '0.11.38', '0.11.37', '0.11.36', '0.11.35', '0.11.34', '0.11.33', '0.11.32', '0.11.31', '0.11.30', '0.11.29', '0.11.28', '0.11.27', '0.11.26', '0.11.25', '0.11.24', '0.11.23', '0.11.22', '0.11.21', '0.11.20', '0.11.19', '0.11.16', '0.11.15', '0.11.14', '0.11.13', '0.11.12', '0.11.11', '0.11.10', '0.11.9', '0.11.6', '0.11.5', '0.11.4', '0.11.2', '0.11.1', '0.11.0', '0.10.23', '0.10.22']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['arkade', 'Arkade'] }; export type ArkadePackage = typeof arkadePackage