/** * **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 charm.sh/melt` * @homepage https://www.mltframework.org/ * @buildDependencies `go.dev@^1.18` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.charmshmelt * 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 charmshmeltPackage: { /** * 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: 'https://www.mltframework.org/'; githubUrl: 'https://github.com/mltframework/mlt'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install charm.sh/melt'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +charm.sh/melt -- $SHELL -i'; launchpadInstallCommand: 'launchpad install charm.sh/melt'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['melt']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.18']; /** * 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']; aliases: readonly [] }; export type CharmshmeltPackage = typeof charmshmeltPackage