UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.31 kB
/** * **go-bindata** - A small utility which generates Go code from any file. Useful for embedding binary data in a Go program. * * @domain `github.com/kevinburke/go-bindata` * @programs `go-bindata` * @version `4.0.2` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install go-bindata` * @name `go-bindata` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.gobindata * // Or access via domain * const samePkg = pantry.githubcomkevinburkegobindata * console.log(pkg === samePkg) // true * console.log(pkg.name) // "go-bindata" * console.log(pkg.description) // "A small utility which generates Go code from an..." * console.log(pkg.programs) // ["go-bindata"] * console.log(pkg.versions[0]) // "4.0.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/kevinburke/go-bindata.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gobindataPackage: { /** * The display name of this package. */ name: 'go-bindata'; /** * The canonical domain name for this package. */ domain: 'github.com/kevinburke/go-bindata'; /** * Brief description of what this package does. */ description: 'A small utility which generates Go code from any file. Useful for embedding binary data in a Go program.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/kevinburke/go-bindata/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install go-bindata'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['go-bindata']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.0.2', '3.25.0', '3.24.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type GobindataPackage = typeof gobindataPackage