UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.29 kB
/** * **webhook** - webhook is a lightweight incoming webhook server to run shell commands * * @domain `github.com/adnanh/webhook` * @programs `webhook` * @version `2.8.2` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install webhook` * @name `webhook` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.webhook * // Or access via domain * const samePkg = pantry.githubcomadnanhwebhook * console.log(pkg === samePkg) // true * console.log(pkg.name) // "webhook" * console.log(pkg.description) // "webhook is a lightweight incoming webhook serve..." * console.log(pkg.programs) // ["webhook"] * console.log(pkg.versions[0]) // "2.8.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/adnanh/webhook.md * @see https://ts-pkgx.netlify.app/usage */ export declare const webhookPackage: { /** * The display name of this package. */ name: 'webhook'; /** * The canonical domain name for this package. */ domain: 'github.com/adnanh/webhook'; /** * Brief description of what this package does. */ description: 'webhook is a lightweight incoming webhook server to run shell commands'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/adnanh/webhook/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install webhook'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['webhook']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.8.2', '2.8.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) webhook -- $SHELL -i'; launchpadInstallCommand: 'launchpad install webhook' }; export type WebhookPackage = typeof webhookPackage