ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.5 kB
TypeScript
/**
* **dbus** - Message bus system, providing inter-application communication
*
* @domain `freedesktop.org/dbus`
* @programs `dbus-cleanup-sockets`, `dbus-daemon`, `dbus-launch`, `dbus-monitor`, `dbus-run-session`, ... (+4 more)
* @version `1.16.2` (7 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +freedesktop.org/dbus -- $SHELL -i`
* @name `dbus`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.dbus
* // Or access via domain
* const samePkg = pantry.freedesktoporgdbus
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "dbus"
* console.log(pkg.description) // "Message bus system, providing inter-application..."
* console.log(pkg.programs) // ["dbus-cleanup-sockets", "dbus-daemon", ...]
* console.log(pkg.versions[0]) // "1.16.2" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/freedesktop-org/dbus.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const dbusPackage: {
/**
* The display name of this package.
*/
name: 'dbus';
/**
* The canonical domain name for this package.
*/
domain: 'freedesktop.org/dbus';
/**
* Brief description of what this package does.
*/
description: 'Message bus system, providing inter-application communication';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/freedesktop.org/dbus/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +freedesktop.org/dbus -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['dbus-cleanup-sockets', 'dbus-daemon', 'dbus-launch', 'dbus-monitor', 'dbus-run-session', 'dbus-send', 'dbus-test-tool', 'dbus-update-activation-environment', 'dbus-uuidgen'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.16.2', '1.16.0', '1.15.92', '1.15.90', '1.15.12', '1.15.10', '1.15.8'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type DbusPackage = typeof dbusPackage