UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.31 kB
/** * **triangle** - Convert images to computer generated art using delaunay triangulation. * * @domain `github.com/esimov/triangle` * @programs `triangle` * @version `2.0.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install triangle` * @name `triangle` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.triangle * // Or access via domain * const samePkg = pantry.githubcomesimovtriangle * console.log(pkg === samePkg) // true * console.log(pkg.name) // "triangle" * console.log(pkg.description) // "Convert images to computer generated art using ..." * console.log(pkg.programs) // ["triangle"] * console.log(pkg.versions[0]) // "2.0.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/esimov/triangle.md * @see https://ts-pkgx.netlify.app/usage */ export declare const trianglePackage: { /** * The display name of this package. */ name: 'triangle'; /** * The canonical domain name for this package. */ domain: 'github.com/esimov/triangle'; /** * Brief description of what this package does. */ description: 'Convert images to computer generated art using delaunay triangulation.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/esimov/triangle/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install triangle'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['triangle']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.0.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) triangle -- $SHELL -i'; launchpadInstallCommand: 'launchpad install triangle' }; export type TrianglePackage = typeof trianglePackage