UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

65 lines 2.19 kB
/** * **swig.org** - SWIG is a software development tool that connects programs written in C and C++ with a variety of high-level programming languages. * * @domain `swig.org` * @programs `swig`, `ccache-swig` * @version `4.3.1` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install +swig.org -- $SHELL -i` * @dependencies `pcre.org/v2` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.swigorg * console.log(pkg.name) // "swig.org" * console.log(pkg.description) // "SWIG is a software development tool that connec..." * console.log(pkg.programs) // ["swig", "ccache-swig"] * console.log(pkg.versions[0]) // "4.3.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/swig-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const swigorgPackage: { /** * The display name of this package. */ name: 'swig.org'; /** * The canonical domain name for this package. */ domain: 'swig.org'; /** * Brief description of what this package does. */ description: 'SWIG is a software development tool that connects programs written in C and C++ with a variety of high-level programming languages.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/swig.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +swig.org -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['swig', 'ccache-swig']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['pcre.org/v2']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.3.1', '4.3.0', '4.2.1', '4.2.0', '4.1.1']; aliases: readonly [] }; export type SwigorgPackage = typeof swigorgPackage