UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.19 kB
/** * **zola** - A fast static site generator in a single binary with everything built-in. https://www.getzola.org * * @domain `getzola.org` * @programs `zola` * @version `0.20.0` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install zola` * @aliases `zola` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.zola * // Or access via domain * const samePkg = pantry.getzolaorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "getzola.org" * console.log(pkg.description) // "A fast static site generator in a single binary..." * console.log(pkg.programs) // ["zola"] * console.log(pkg.versions[0]) // "0.20.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/getzola-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const zolaPackage: { /** * The display name of this package. */ name: 'getzola.org'; /** * The canonical domain name for this package. */ domain: 'getzola.org'; /** * Brief description of what this package does. */ description: 'A fast static site generator in a single binary with everything built-in. https://www.getzola.org'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/getzola.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 zola'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['zola']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.20.0', '0.19.2', '0.19.1', '0.19.0', '0.18.0', '0.17.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['zola'] }; export type ZolaPackage = typeof zolaPackage