ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 4.24 kB
TypeScript
/**
* **pulumi** - Pulumi - Infrastructure as Code in any programming language 🚀
*
* @domain `pulumi.io`
* @programs `pulumi`, `pulumi-analyzer-policy`, `pulumi-analyzer-policy-python`, `pulumi-language-dotnet`, `pulumi-language-go`, ... (+8 more)
* @version `3.178.0` (141 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +pulumi.io -- $SHELL -i`
* @aliases `pulumi`
* @dependencies `curl.se/ca-certs`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.pulumi
* // Or access via domain
* const samePkg = pantry.pulumiio
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "pulumi.io"
* console.log(pkg.description) // "Pulumi - Infrastructure as Code in any programm..."
* console.log(pkg.programs) // ["pulumi", "pulumi-analyzer-policy", ...]
* console.log(pkg.versions[0]) // "3.178.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/pulumi-io.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const pulumiPackage: {
/**
* The display name of this package.
*/
name: 'pulumi.io';
/**
* The canonical domain name for this package.
*/
domain: 'pulumi.io';
/**
* Brief description of what this package does.
*/
description: 'Pulumi - Infrastructure as Code in any programming language 🚀';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pulumi.io/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pulumi/pulumi';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +pulumi.io -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['pulumi', 'pulumi-analyzer-policy', 'pulumi-analyzer-policy-python', 'pulumi-language-dotnet', 'pulumi-language-go', 'pulumi-language-java', 'pulumi-language-nodejs', 'pulumi-language-python', 'pulumi-language-python-exec', 'pulumi-language-yaml', 'pulumi-resource-pulumi-nodejs', 'pulumi-resource-pulumi-python', 'pulumi-watch'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['curl.se/ca-certs'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['3.178.0', '3.177.0', '3.176.0', '3.175.0', '3.174.0', '3.173.0', '3.172.0', '3.171.0', '3.170.0', '3.169.0', '3.168.0', '3.167.0', '3.166.0', '3.165.0', '3.163.0', '3.162.0', '3.161.0', '3.158.0', '3.157.0', '3.156.0', '3.155.0', '3.154.0', '3.153.1', '3.153.0', '3.152.0', '3.151.0', '3.150.0', '3.149.0', '3.148.0', '3.147.0', '3.146.0', '3.145.0', '3.144.1', '3.144.0', '3.143.0', '3.142.0', '3.141.0', '3.140.0', '3.139.0', '3.138.0', '3.137.0', '3.136.1', '3.136.0', '3.135.1', '3.135.0', '3.134.1', '3.134.0', '3.133.0', '3.132.0', '3.131.0', '3.130.0', '3.129.0', '3.128.0', '3.127.0', '3.126.0', '3.125.0', '3.124.0', '3.123.0', '3.122.0', '3.121.0', '3.120.0', '3.119.0', '3.118.0', '3.117.0', '3.116.1', '3.116.0', '3.115.2', '3.115.1', '3.115.0', '3.114.0', '3.113.3', '3.113.2', '3.113.1', '3.113.0', '3.112.0', '3.111.1', '3.111.0', '3.110.0', '3.109.0', '3.108.1', '3.108.0', '3.107.0', '3.106.0', '3.105.0', '3.104.2', '3.104.1', '3.104.0', '3.103.1', '3.103.0', '3.102.0', '3.101.1', '3.101.0', '3.100.0', '3.99.0', '3.98.0', '3.97.0', '3.96.2', '3.96.1', '3.96.0', '3.95.0', '3.94.2', '3.94.1', '3.94.0', '3.93.0', '3.92.0', '3.91.1', '3.91.0', '3.90.1', '3.90.0', '3.89.0', '3.88.1', '3.88.0', '3.87.0', '3.86.0', '3.85.0', '3.84.0', '3.83.0', '3.82.1', '3.82.0', '3.81.0', '3.80.0', '3.79.0', '3.78.1', '3.78.0', '3.77.1', '3.77.0', '3.76.1', '3.76.0', '3.75.0', '3.74.0', '3.73.0', '3.72.2', '3.72.1', '3.72.0', '3.71.0', '3.70.0', '3.69.0', '3.68.0', '3.67.1', '3.67.0', '3.66.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['pulumi']
};
export type PulumiPackage = typeof pulumiPackage