UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.7 kB
/** * **tectonic** - A modernized, complete, self-contained TeX/LaTeX engine, powered by XeTeX and TeXLive. * * @domain `tectonic-typesetting.github.io` * @programs `tectonic` * @version `0.15.0` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install tectonic` * @name `tectonic` * @dependencies `freetype.org`, `graphite.sil.org`, `harfbuzz.org`, ... (+3 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.tectonic * // Or access via domain * const samePkg = pantry.tectonictypesettinggithubio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "tectonic" * console.log(pkg.description) // "A modernized, complete, self-contained TeX/LaTe..." * console.log(pkg.programs) // ["tectonic"] * console.log(pkg.versions[0]) // "0.15.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/tectonic-typesetting-github-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const tectonicPackage: { /** * The display name of this package. */ name: 'tectonic'; /** * The canonical domain name for this package. */ domain: 'tectonic-typesetting.github.io'; /** * Brief description of what this package does. */ description: 'A modernized, complete, self-contained TeX/LaTeX engine, powered by XeTeX and TeXLive.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/tectonic-typesetting.github.io/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install tectonic'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['tectonic']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['freetype.org', 'graphite.sil.org', 'harfbuzz.org', 'libpng.org', 'openssl.org^1.1', 'unicode.org^71']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.15.0', '0.14.1', '0.14.0', '0.13.1', '0.13.0', '0.12.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) tectonic -- $SHELL -i'; launchpadInstallCommand: 'launchpad install tectonic' }; export type TectonicPackage = typeof tectonicPackage