/** * **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.21.0` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install getzola.org` * @homepage https://www.getzola.org/ * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.getzolaorg * console.log(pkg.name) // "zola" * console.log(pkg.description) // "A fast static site generator in a single binary..." * console.log(pkg.programs) // ["zola"] * console.log(pkg.versions[0]) // "0.21.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/getzola-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const getzolaorgPackage: { /** * The display name of this package. */ name: 'zola'; /** * 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: 'https://www.getzola.org/'; githubUrl: 'https://github.com/getzola/zola'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install getzola.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +getzola.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install getzola.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['zola']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.21.0', '0.20.0', '0.19.2', '0.19.1', '0.19.0', '0.18.0', '0.17.2']; aliases: readonly [] }; export type GetzolaorgPackage = typeof getzolaorgPackage