/** * **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.5.1` (11 versions available) * @versions From newest version to oldest. * * @install `launchpad install fermyon.com/spin` * @homepage https://spinroot.com/spin/whatispin.html * @buildDependencies `linux:llvm.org` (includes OS-specific dependencies with `os:package` format) - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.fermyoncomspin * 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.5.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/fermyon-com/spin.md * @see https://ts-pkgx.netlify.app/usage */ export declare const fermyoncomspinPackage: { /** * 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: 'https://spinroot.com/spin/whatispin.html'; githubUrl: 'https://github.com/fermyon/spin'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install fermyon.com/spin'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +fermyon.com/spin -- $SHELL -i'; launchpadInstallCommand: 'launchpad install fermyon.com/spin'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['spin']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:gnu.org/gcc`). */ buildDependencies: readonly ['linux:llvm.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.5.1', '3.4.1', '3.4.0', '3.3.1', '3.3.0', '3.2.0', '3.1.2', '3.1.1', '3.1.0', '3.0.0', '2.7.0']; aliases: readonly [] }; export type FermyoncomspinPackage = typeof fermyoncomspinPackage