ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.15 kB
TypeScript
/**
* **mop** - Stock market tracker for hackers.
*
* @domain `github.com/mop-tracker/mop`
* @programs `mop`
* @version `2023.3.30` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install mop`
* @name `mop`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.mop
* // Or access via domain
* const samePkg = pantry.githubcommoptrackermop
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "mop"
* console.log(pkg.description) // "Stock market tracker for hackers."
* console.log(pkg.programs) // ["mop"]
* console.log(pkg.versions[0]) // "2023.3.30" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/mop-tracker/mop.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const mopPackage: {
/**
* The display name of this package.
*/
name: 'mop';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/mop-tracker/mop';
/**
* Brief description of what this package does.
*/
description: 'Stock market tracker for hackers.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/mop-tracker/mop/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install mop';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['mop'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2023.3.30'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) mop -- $SHELL -i';
launchpadInstallCommand: 'launchpad install mop'
};
export type MopPackage = typeof mopPackage