UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.26 kB
/** * **shovel** - An Ethereum to Postgres indexer * * @domain `indexsupply.com/shovel` * @programs `shovel` * @version `1.6.0` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install shovel` * @name `shovel` * @companions `postgresql.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.shovel * // Or access via domain * const samePkg = pantry.indexsupplycomshovel * console.log(pkg === samePkg) // true * console.log(pkg.name) // "shovel" * console.log(pkg.description) // "An Ethereum to Postgres indexer" * console.log(pkg.programs) // ["shovel"] * console.log(pkg.versions[0]) // "1.6.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/indexsupply-com/shovel.md * @see https://ts-pkgx.netlify.app/usage */ export declare const shovelPackage: { /** * The display name of this package. */ name: 'shovel'; /** * The canonical domain name for this package. */ domain: 'indexsupply.com/shovel'; /** * Brief description of what this package does. */ description: 'An Ethereum to Postgres indexer'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/indexsupply.com/shovel/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install shovel'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['shovel']; /** * Related packages that work well with this package. * Consider installing these for enhanced functionality. */ companions: readonly ['postgresql.org']; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.6.0', '1.5.0', '1.4.0', '1.3.0', '1.2.0', '1.1.0', '1.0.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type ShovelPackage = typeof shovelPackage