UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

65 lines 2.09 kB
/** * **ladspa.org** - Linux Audio Developer's Simple Plugin * * @domain `ladspa.org` * @programs `analyseplugin`, `applyplugin`, `listplugins` * @version `1.17.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install +ladspa.org -- $SHELL -i` * @dependencies `github.com/libsndfile/libsndfile^1.2` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.ladspaorg * console.log(pkg.name) // "ladspa.org" * console.log(pkg.description) // "Linux Audio Developer's Simple Plugin" * console.log(pkg.programs) // ["analyseplugin", "applyplugin", ...] * console.log(pkg.versions[0]) // "1.17.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/ladspa-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const ladspaorgPackage: { /** * The display name of this package. */ name: 'ladspa.org'; /** * The canonical domain name for this package. */ domain: 'ladspa.org'; /** * Brief description of what this package does. */ description: 'Linux Audio Developer\'s Simple Plugin'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/ladspa.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 +ladspa.org -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['analyseplugin', 'applyplugin', 'listplugins']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['github.com/libsndfile/libsndfile^1.2']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.17.0']; aliases: readonly [] }; export type LadspaorgPackage = typeof ladspaorgPackage