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