UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.37 kB
/** * **sf.net/potrace** - Convert bitmaps to vector graphics * * @domain `sourceforge.net/potrace` * @programs `potrace`, `mkbitmap` * @version `1.16.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install +sourceforge.net/potrace -- $SHELL -i` * @aliases `sf.net/potrace` * @dependencies `zlib.net^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.sfnetpotrace * // Or access via domain * const samePkg = pantry.sourceforgenetpotrace * console.log(pkg === samePkg) // true * console.log(pkg.name) // "potrace" * console.log(pkg.description) // "Convert bitmaps to vector graphics" * console.log(pkg.programs) // ["potrace", "mkbitmap"] * console.log(pkg.versions[0]) // "1.16.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/sourceforge-net/potrace.md * @see https://ts-pkgx.netlify.app/usage */ export declare const sfnetpotracePackage: { /** * The display name of this package. */ name: 'potrace'; /** * The canonical domain name for this package. */ domain: 'sourceforge.net/potrace'; /** * Brief description of what this package does. */ description: 'Convert bitmaps to vector graphics'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/sourceforge.net/potrace/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +sourceforge.net/potrace -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['potrace', 'mkbitmap']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['zlib.net^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.16.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['sf.net/potrace'] }; export type SfnetpotracePackage = typeof sfnetpotracePackage