ts-pkgx
Version:
A library & CLI for managing packages
75 lines • 2.6 kB
TypeScript
/**
* **vspipe** - A video processing framework with simplicity in mind
*
* @domain `vapoursynth.com`
* @programs `vspipe`
* @version `72.0.0` (9 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install vspipe`
* @aliases `vspipe`
* @dependencies `python.org~3.11`, `github.com/sekrit-twc/zimg`, `linux:gnu.org/gcc/libstdcxx` (includes OS-specific dependencies with `os:package` format)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.vspipe
* // Or access via domain
* const samePkg = pantry.vapoursynthcom
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "vapoursynth.com"
* console.log(pkg.description) // "A video processing framework with simplicity in..."
* console.log(pkg.programs) // ["vspipe"]
* console.log(pkg.versions[0]) // "72.0.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/vapoursynth-com.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const vspipePackage: {
/**
* The display name of this package.
*/
name: 'vapoursynth.com';
/**
* The canonical domain name for this package.
*/
domain: 'vapoursynth.com';
/**
* Brief description of what this package does.
*/
description: 'A video processing framework with simplicity in mind';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/vapoursynth.com/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install vspipe';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['vspipe'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
* OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`).
*/
dependencies: readonly ['python.org~3.11', 'github.com/sekrit-twc/zimg', 'linux:gnu.org/gcc/libstdcxx'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['72.0.0', '71.0.0', '70.0.0', '69.0.0', '68.0.0', '67.0.0', '66.0.0', '65.0.0', '64.0.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['vspipe']
};
export type VspipePackage = typeof vspipePackage