ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.16 kB
TypeScript
/**
* **pocket** - Official implementation of the Pocket Network Protocol
*
* @domain `pokt.network`
* @programs `pocket`
* @version `0.12.0` (8 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install pocket`
* @aliases `pocket`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.pocket
* // Or access via domain
* const samePkg = pantry.poktnetwork
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "pokt.network"
* console.log(pkg.description) // "Official implementation of the Pocket Network P..."
* console.log(pkg.programs) // ["pocket"]
* console.log(pkg.versions[0]) // "0.12.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/pokt-network.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const pocketPackage: {
/**
* The display name of this package.
*/
name: 'pokt.network';
/**
* The canonical domain name for this package.
*/
domain: 'pokt.network';
/**
* Brief description of what this package does.
*/
description: 'Official implementation of the Pocket Network Protocol';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pokt.network/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install pocket';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['pocket'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.12.0', '0.11.3', '0.11.2', '0.11.1', '0.10.4', '0.10.3', '0.10.0', '0.9.2'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['pocket']
};
export type PocketPackage = typeof pocketPackage