ts-pkgx
Version:
A library & CLI for managing packages
80 lines • 2.73 kB
TypeScript
/**
* **termusic** - Music Player TUI written in Rust
*
* @domain `crates.io/termusic`
* @programs `termusic`, `termusic-server`
* @version `0.10.0` (3 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +crates.io/termusic -- $SHELL -i`
* @name `termusic`
* @dependencies `linux:alsa-project.org/alsa-lib`, `linux:freedesktop.org/dbus` (includes OS-specific dependencies with `os:package` format)
* @companions `yt-dlp.org`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.termusic
* // Or access via domain
* const samePkg = pantry.cratesiotermusic
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "termusic"
* console.log(pkg.description) // "Music Player TUI written in Rust"
* console.log(pkg.programs) // ["termusic", "termusic-server"]
* console.log(pkg.versions[0]) // "0.10.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/crates-io/termusic.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const termusicPackage: {
/**
* The display name of this package.
*/
name: 'termusic';
/**
* The canonical domain name for this package.
*/
domain: 'crates.io/termusic';
/**
* Brief description of what this package does.
*/
description: 'Music Player TUI written in Rust';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/termusic/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +crates.io/termusic -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['termusic', 'termusic-server'];
/**
* Related packages that work well with this package.
* Consider installing these for enhanced functionality.
*/
companions: readonly ['yt-dlp.org'];
/**
* Required dependencies for this package.
* These will be automatically installed.
* OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`).
*/
dependencies: readonly ['linux:alsa-project.org/alsa-lib', 'linux:freedesktop.org/dbus'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.10.0', '0.9.1', '0.9.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type TermusicPackage = typeof termusicPackage