UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

65 lines 2.74 kB
/** * **encore.dev** - Open Source Development Platform for building robust type-safe distributed systems with declarative infrastructure * * @domain `encore.dev` * @programs `encore`, `git-remote-encore` * @version `1.48.4` (55 versions available) * @versions From newest version to oldest. * * @install `launchpad install +encore.dev -- $SHELL -i` * @dependencies `encore.dev/go^1.21` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.encoredev * console.log(pkg.name) // "encore.dev" * console.log(pkg.description) // "Open Source Development Platform for building r..." * console.log(pkg.programs) // ["encore", "git-remote-encore"] * console.log(pkg.versions[0]) // "1.48.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/encore-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const encoredevPackage: { /** * The display name of this package. */ name: 'encore.dev'; /** * The canonical domain name for this package. */ domain: 'encore.dev'; /** * Brief description of what this package does. */ description: 'Open Source Development Platform for building robust type-safe distributed systems with declarative infrastructure'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/encore.dev/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +encore.dev -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['encore', 'git-remote-encore']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['encore.dev/go^1.21']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.48.4', '1.48.3', '1.48.2', '1.48.0', '1.47.0', '1.46.22', '1.46.21', '1.46.20', '1.46.19', '1.46.18', '1.46.17', '1.46.16', '1.46.15', '1.46.14', '1.46.13', '1.46.12', '1.46.11', '1.46.10', '1.46.9', '1.46.8', '1.46.7', '1.46.6', '1.46.5', '1.46.4', '1.46.2', '1.46.1', '1.46.0', '1.45.6', '1.45.1', '1.44.9', '1.44.4', '1.44.0', '1.43.9', '1.43.7', '1.43.3', '1.42.3', '1.42.1', '1.41.9', '1.41.7', '1.41.4', '1.41.3', '1.41.1', '1.40.0', '1.39.0', '1.38.0', '1.37.0', '1.35.3', '1.34.7', '1.31.0', '1.30.0', '1.29.2', '1.28.0', '1.27.0', '1.26.0', '1.25.0']; aliases: readonly [] }; export type EncoredevPackage = typeof encoredevPackage