ts-pkgx
Version:
A library & CLI for managing packages
65 lines • 2.3 kB
TypeScript
/**
* **radicle.org** - Radicle CLI
*
* @domain `radicle.org`
* @programs `rad`, `git-remote-rad`, `rad-account`, `rad-auth`, `rad-checkout`, ... (+21 more)
* @version `0.6.1` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +radicle.org -- $SHELL -i`
* @dependencies `openssl.org^1.1.1`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.radicleorg
* console.log(pkg.name) // "radicle.org"
* console.log(pkg.description) // "Radicle CLI"
* console.log(pkg.programs) // ["rad", "git-remote-rad", ...]
* console.log(pkg.versions[0]) // "0.6.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/radicle-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const radicleorgPackage: {
/**
* The display name of this package.
*/
name: 'radicle.org';
/**
* The canonical domain name for this package.
*/
domain: 'radicle.org';
/**
* Brief description of what this package does.
*/
description: 'Radicle CLI';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/radicle.org/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +radicle.org -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['rad', 'git-remote-rad', 'rad-account', 'rad-auth', 'rad-checkout', 'rad-clone', 'rad-edit', 'rad-ens', 'rad-gov', 'rad-help', 'rad-init', 'rad-inspect', 'rad-issue', 'rad-ls', 'rad-merge', 'rad-patch', 'rad-path', 'rad-pull', 'rad-push', 'rad-remote', 'rad-reward', 'rad-rm', 'rad-self', 'rad-sync', 'rad-track', 'rad-untrack'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['openssl.org^1.1.1'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.6.1'];
aliases: readonly []
};
export type RadicleorgPackage = typeof radicleorgPackage