ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.31 kB
TypeScript
/**
* **terminal-notifier** - Send User Notifications on macOS from the command-line.
*
* @domain `github.com/julienXX/terminal-notifier`
* @programs `terminal-notifier`
* @version `2.0.0` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install terminal-notifier`
* @name `terminal-notifier`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.terminalnotifier
* // Or access via domain
* const samePkg = pantry.githubcomjulienxxterminalnotifier
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "terminal-notifier"
* console.log(pkg.description) // "Send User Notifications on macOS from the comma..."
* console.log(pkg.programs) // ["terminal-notifier"]
* console.log(pkg.versions[0]) // "2.0.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/julienXX/terminal-notifier.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const terminalnotifierPackage: {
/**
* The display name of this package.
*/
name: 'terminal-notifier';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/julienXX/terminal-notifier';
/**
* Brief description of what this package does.
*/
description: 'Send User Notifications on macOS from the command-line.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/julienXX/terminal-notifier/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install terminal-notifier';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['terminal-notifier'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.0.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type TerminalnotifierPackage = typeof terminalnotifierPackage