ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.1 kB
TypeScript
/**
* **genact** - 🌀 A nonsense activity generator
*
* @domain `svenstaro.github.io/genact`
* @programs `genact`
* @version `1.4.2` (5 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install genact`
* @name `genact`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.genact
* // Or access via domain
* const samePkg = pantry.svenstarogithubiogenact
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "genact"
* console.log(pkg.description) // "🌀 A nonsense activity generator"
* console.log(pkg.programs) // ["genact"]
* console.log(pkg.versions[0]) // "1.4.2" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/svenstaro-github-io/genact.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const genactPackage: {
/**
* The display name of this package.
*/
name: 'genact';
/**
* The canonical domain name for this package.
*/
domain: 'svenstaro.github.io/genact';
/**
* Brief description of what this package does.
*/
description: '🌀 A nonsense activity generator';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/svenstaro.github.io/genact/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install genact';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['genact'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.4.2', '1.4.1', '1.4.0', '1.3.0', '1.2.2'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type GenactPackage = typeof genactPackage