ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.62 kB
TypeScript
/**
* **wunderctl** - WunderGraph is a Backend for Frontend Framework to optimize frontend, fullstack and backend developer workflows through API Composition.
*
* @domain `wundergraph.com`
* @programs `wunderctl`
* @version `0.181.0` (20 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install wunderctl`
* @name `wunderctl`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.wunderctl
* // Or access via domain
* const samePkg = pantry.wundergraphcom
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "wunderctl"
* console.log(pkg.description) // "WunderGraph is a Backend for Frontend Framework..."
* console.log(pkg.programs) // ["wunderctl"]
* console.log(pkg.versions[0]) // "0.181.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/wundergraph-com.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const wunderctlPackage: {
/**
* The display name of this package.
*/
name: 'wunderctl';
/**
* The canonical domain name for this package.
*/
domain: 'wundergraph.com';
/**
* Brief description of what this package does.
*/
description: 'WunderGraph is a Backend for Frontend Framework to optimize frontend, fullstack and backend developer workflows through API Composition.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/wundergraph.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 wunderctl';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['wunderctl'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.181.0', '0.180.2', '0.180.1', '0.180.0', '0.179.1', '0.179.0', '0.178.0', '0.177.0', '0.176.3', '0.176.2', '0.176.1', '0.176.0', '0.175.0', '0.174.0', '0.173.0', '0.172.0', '0.171.0', '0.170.0', '0.169.3', '0.169.2'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) wunderctl -- $SHELL -i';
launchpadInstallCommand: 'launchpad install wunderctl'
};
export type WunderctlPackage = typeof wunderctlPackage