ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.08 kB
TypeScript
/**
* **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 jetp`
* @aliases `jetp`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.jetp
* // Or access via domain
* const samePkg = pantry.jetporchcom
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "jetporch.com"
* 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 jetpPackage: {
/**
* The display name of this package.
*/
name: 'jetporch.com';
/**
* 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/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install jetp';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['jetp'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.0.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['jetp']
};
export type JetpPackage = typeof jetpPackage