ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.67 kB
TypeScript
/**
* **cloudflared** - Cloudflare Tunnel client (formerly Argo Tunnel)
*
* @domain `cloudflare.com/cloudflared`
* @programs `cloudflared`
* @version `2025.8.0` (30 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install cloudflared`
* @name `cloudflared`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.cloudflared
* // Or access via domain
* const samePkg = pantry.cloudflarecomcloudflared
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "cloudflared"
* console.log(pkg.description) // "Cloudflare Tunnel client (formerly Argo Tunnel)"
* console.log(pkg.programs) // ["cloudflared"]
* console.log(pkg.versions[0]) // "2025.8.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/cloudflare-com/cloudflared.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const cloudflaredPackage: {
/**
* The display name of this package.
*/
name: 'cloudflared';
/**
* The canonical domain name for this package.
*/
domain: 'cloudflare.com/cloudflared';
/**
* Brief description of what this package does.
*/
description: 'Cloudflare Tunnel client (formerly Argo Tunnel)';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/cloudflare.com/cloudflared/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install cloudflared';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['cloudflared'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2025.8.0', '2025.7.0', '2025.6.1', '2025.6.0', '2025.5.0', '2025.4.2', '2025.4.0', '2025.2.1', '2025.2.0', '2025.1.1', '2025.1.0', '2024.12.2', '2024.12.1', '2024.12.0', '2024.11.1', '2024.11.0', '2024.10.1', '2024.10.0', '2024.9.1', '2024.9.0', '2024.8.3', '2024.8.2', '2024.7.3', '2024.6.1', '2024.6.0', '2024.5.0', '2024.4.1', '2024.4.0', '2024.3.0', '2024.2.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) cloudflared -- $SHELL -i';
launchpadInstallCommand: 'launchpad install cloudflared'
};
export type CloudflaredPackage = typeof cloudflaredPackage