/** * **jetp** - Read-only mirror: see https://www.jetporch.com/community/sourcehut * * @domain `jetporch.com` * @programs `jetp` * @version `0.0.1` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install jetporch.com` * @buildDependencies `openssl.org`, `zlib.net` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.jetporchcom * console.log(pkg.name) // "jetp" * console.log(pkg.description) // "Read-only mirror: see https://www.jetporch.com/..." * console.log(pkg.programs) // ["jetp"] * console.log(pkg.versions[0]) // "0.0.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/jetporch-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const jetporchcomPackage: { /** * The display name of this package. */ name: 'jetp'; /** * The canonical domain name for this package. */ domain: 'jetporch.com'; /** * Brief description of what this package does. */ description: 'Read-only mirror: see https://www.jetporch.com/community/sourcehut'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/jetporch.com/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/jetporch/jetporch'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install jetporch.com'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +jetporch.com -- $SHELL -i'; launchpadInstallCommand: 'launchpad install jetporch.com'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['jetp']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['openssl.org', 'zlib.net']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.0.1']; aliases: readonly [] }; export type JetporchcomPackage = typeof jetporchcomPackage