ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.16 kB
TypeScript
/**
* **render** - Command-line interface for Render
*
* @domain `render.com`
* @programs `render`
* @version `0.1.11` (6 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install render`
* @name `render`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.render
* // Or access via domain
* const samePkg = pantry.rendercom
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "render"
* console.log(pkg.description) // "Command-line interface for Render"
* console.log(pkg.programs) // ["render"]
* console.log(pkg.versions[0]) // "0.1.11" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/render-com.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const renderPackage: {
/**
* The display name of this package.
*/
name: 'render';
/**
* The canonical domain name for this package.
*/
domain: 'render.com';
/**
* Brief description of what this package does.
*/
description: 'Command-line interface for Render';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/render.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 render';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['render'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.1.11', '0.1.10', '0.1.9', '0.1.8', '0.1.7', '0.1.5'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) render -- $SHELL -i';
launchpadInstallCommand: 'launchpad install render'
};
export type RenderPackage = typeof renderPackage