UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

68 lines 2.29 kB
/** * **python-jinja** - A very fast and expressive template engine. * * @domain `palletsprojects.com/jinja` * @version `3.1.6` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install +palletsprojects.com/jinja -- $SHELL -i` * @aliases `python-jinja` * @dependencies `python.org>=3.11`, `markupsafe.palletsprojects.com>=2.1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.pythonjinja * // Or access via domain * const samePkg = pantry.palletsprojectscomjinja * console.log(pkg === samePkg) // true * console.log(pkg.name) // "jinja" * console.log(pkg.description) // "A very fast and expressive template engine." * console.log(pkg.versions[0]) // "3.1.6" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/palletsprojects-com/jinja.md * @see https://ts-pkgx.netlify.app/usage */ export declare const pythonjinjaPackage: { /** * The display name of this package. */ name: 'jinja'; /** * The canonical domain name for this package. */ domain: 'palletsprojects.com/jinja'; /** * Brief description of what this package does. */ description: 'A very fast and expressive template engine.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/palletsprojects.com/jinja/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pallets/jinja'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +palletsprojects.com/jinja -- $SHELL -i'; programs: readonly []; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['python.org>=3.11', 'markupsafe.palletsprojects.com>=2.1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.1.6', '3.1.5', '3.1.4', '3.1.3']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['python-jinja'] }; export type PythonjinjaPackage = typeof pythonjinjaPackage