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