UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.26 kB
/** * **spacetime** - Multiplayer at the speed of light * * @domain `spacetimedb.com` * @programs `spacetime` * @version `2023.12.8` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install spacetime` * @aliases `spacetime` * @dependencies `openssl.org^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.spacetime * // Or access via domain * const samePkg = pantry.spacetimedbcom * console.log(pkg === samePkg) // true * console.log(pkg.name) // "spacetimedb.com" * console.log(pkg.description) // "Multiplayer at the speed of light" * console.log(pkg.programs) // ["spacetime"] * console.log(pkg.versions[0]) // "2023.12.8" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/spacetimedb-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const spacetimePackage: { /** * The display name of this package. */ name: 'spacetimedb.com'; /** * The canonical domain name for this package. */ domain: 'spacetimedb.com'; /** * Brief description of what this package does. */ description: 'Multiplayer at the speed of light'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/spacetimedb.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 spacetime'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['spacetime']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openssl.org^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2023.12.8', '2023.8.12']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['spacetime'] }; export type SpacetimePackage = typeof spacetimePackage