ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.09 kB
TypeScript
/**
* **diun** - Receive notifications when an image is updated on a Docker registry
*
* @domain `crazymax.dev/diun`
* @programs `diun`
* @version `4.29.0` (2 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install diun`
* @name `diun`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.diun
* // Or access via domain
* const samePkg = pantry.crazymaxdevdiun
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "diun"
* console.log(pkg.description) // "Receive notifications when an image is updated ..."
* console.log(pkg.programs) // ["diun"]
* console.log(pkg.versions[0]) // "4.29.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/crazymax-dev/diun.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const diunPackage: {
/**
* The display name of this package.
*/
name: 'diun';
/**
* The canonical domain name for this package.
*/
domain: 'crazymax.dev/diun';
/**
* Brief description of what this package does.
*/
description: 'Receive notifications when an image is updated on a Docker registry';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crazymax.dev/diun/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install diun';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['diun'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['4.29.0', '4.28.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type DiunPackage = typeof diunPackage