UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.06 kB
/** * **melt** - Author, manage, and run multitrack audio/video compositions * * @domain `charm.sh/melt` * @programs `melt` * @version `0.6.2` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install melt` * @name `melt` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.melt * // Or access via domain * const samePkg = pantry.charmshmelt * console.log(pkg === samePkg) // true * console.log(pkg.name) // "melt" * console.log(pkg.description) // "Author, manage, and run multitrack audio/video ..." * console.log(pkg.programs) // ["melt"] * console.log(pkg.versions[0]) // "0.6.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/charm-sh/melt.md * @see https://ts-pkgx.netlify.app/usage */ export declare const meltPackage: { /** * The display name of this package. */ name: 'melt'; /** * The canonical domain name for this package. */ domain: 'charm.sh/melt'; /** * Brief description of what this package does. */ description: 'Author, manage, and run multitrack audio/video compositions'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/charm.sh/melt/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install melt'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['melt']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.6.2', '0.6.1', '0.6.0', '0.5.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type MeltPackage = typeof meltPackage