ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.35 kB
TypeScript
/**
* **mako-render** - Mako Templates for Python
*
* @domain `makotemplates.org`
* @programs `mako-render`
* @version `1.3.10` (12 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install mako-render`
* @aliases `mako-render`
* @dependencies `python.org~3.11`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.makorender
* // Or access via domain
* const samePkg = pantry.makotemplatesorg
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "makotemplates.org"
* console.log(pkg.description) // "Mako Templates for Python"
* console.log(pkg.programs) // ["mako-render"]
* console.log(pkg.versions[0]) // "1.3.10" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/makotemplates-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const makorenderPackage: {
/**
* The display name of this package.
*/
name: 'makotemplates.org';
/**
* The canonical domain name for this package.
*/
domain: 'makotemplates.org';
/**
* Brief description of what this package does.
*/
description: 'Mako Templates for Python';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/makotemplates.org/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install mako-render';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['mako-render'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['python.org~3.11'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.3.10', '1.3.9', '1.3.8', '1.3.7', '1.3.6', '1.3.5', '1.3.4', '1.3.3', '1.3.2', '1.3.1', '1.3.0', '1.2.4'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['mako-render']
};
export type MakorenderPackage = typeof makorenderPackage