/** * **markitdown** - Python tool for converting files and office documents to Markdown. * * @domain `microsoft.com/markitdown` * @programs `markitdown` * @version `0.0.1.3` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install microsoft.com/markitdown` * @dependencies `pkgx.sh^1` * @buildDependencies `python.org@~3.13` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.microsoftcommarkitdown * console.log(pkg.name) // "markitdown" * console.log(pkg.description) // "Python tool for converting files and office doc..." * console.log(pkg.programs) // ["markitdown"] * console.log(pkg.versions[0]) // "0.0.1.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/microsoft-com/markitdown.md * @see https://ts-pkgx.netlify.app/usage */ export declare const microsoftcommarkitdownPackage: { /** * The display name of this package. */ name: 'markitdown'; /** * The canonical domain name for this package. */ domain: 'microsoft.com/markitdown'; /** * Brief description of what this package does. */ description: 'Python tool for converting files and office documents to Markdown.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/microsoft.com/markitdown/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/microsoft/markitdown'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install microsoft.com/markitdown'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +microsoft.com/markitdown -- $SHELL -i'; launchpadInstallCommand: 'launchpad install microsoft.com/markitdown'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['markitdown']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['pkgx.sh^1']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['python.org@~3.13']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.0.1.3']; aliases: readonly [] }; export type MicrosoftcommarkitdownPackage = typeof microsoftcommarkitdownPackage