ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.47 kB
TypeScript
/**
* **spin** - Spin is the open source developer tool for building and running serverless applications powered by WebAssembly.
*
* @domain `fermyon.com/spin`
* @programs `spin`
* @version `3.3.1` (8 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install spin`
* @name `spin`
* @companions `rust-lang.org`, `rust-lang.org/cargo`, `git-scm.org`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.spin
* // Or access via domain
* const samePkg = pantry.fermyoncomspin
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "spin"
* console.log(pkg.description) // "Spin is the open source developer tool for buil..."
* console.log(pkg.programs) // ["spin"]
* console.log(pkg.versions[0]) // "3.3.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/fermyon-com/spin.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const spinPackage: {
/**
* The display name of this package.
*/
name: 'spin';
/**
* The canonical domain name for this package.
*/
domain: 'fermyon.com/spin';
/**
* Brief description of what this package does.
*/
description: 'Spin is the open source developer tool for building and running serverless applications powered by WebAssembly.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/fermyon.com/spin/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install spin';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['spin'];
/**
* Related packages that work well with this package.
* Consider installing these for enhanced functionality.
*/
companions: readonly ['rust-lang.org', 'rust-lang.org/cargo', 'git-scm.org'];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['3.3.1', '3.3.0', '3.2.0', '3.1.2', '3.1.1', '3.1.0', '3.0.0', '2.7.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type SpinPackage = typeof spinPackage