ts-pkgx
Version:
A library & CLI for managing packages
76 lines • 2.62 kB
TypeScript
/**
* **tesseract** - Tesseract Open Source OCR Engine (main repository)
*
* @domain `tesseract-ocr.github.io`
* @programs `tesseract`
* @version `5.5.1` (9 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install tesseract`
* @name `tesseract`
* @dependencies `cairographics.org@1`, `unicode.org@71`, `leptonica.org`, ... (+2 more)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.tesseract
* // Or access via domain
* const samePkg = pantry.tesseractocrgithubio
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "tesseract"
* console.log(pkg.description) // "Tesseract Open Source OCR Engine (main repository)"
* console.log(pkg.programs) // ["tesseract"]
* console.log(pkg.versions[0]) // "5.5.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/tesseract-ocr-github-io.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const tesseractPackage: {
/**
* The display name of this package.
*/
name: 'tesseract';
/**
* The canonical domain name for this package.
*/
domain: 'tesseract-ocr.github.io';
/**
* Brief description of what this package does.
*/
description: 'Tesseract Open Source OCR Engine (main repository)';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/tesseract-ocr.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 tesseract';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['tesseract'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['cairographics.org@1', 'unicode.org@71', 'leptonica.org', 'libarchive.org', 'gnome.org/pango@1'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['5.5.1', '5.5.0', '5.4.1', '5.4.0', '5.3.4', '5.3.3', '5.3.2', '5.3.1', '5.3.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) tesseract -- $SHELL -i';
launchpadInstallCommand: 'launchpad install tesseract'
};
export type TesseractPackage = typeof tesseractPackage