/** * **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 github.com/adnanh/webhook` * @buildDependencies `go.dev@^1.21` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomadnanhwebhook * 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/adnanh/webhook'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/adnanh/webhook'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/adnanh/webhook -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/adnanh/webhook'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['webhook']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.21']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.8.2', '2.8.1']; aliases: readonly [] }; export type WebhookPackage = typeof webhookPackage