UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.3 kB
/** * **create-dmg** - A shell script to build fancy DMGs * * @domain `github.com/create-dmg/create-dmg` * @programs `create-dmg` * @version `1.2.2` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install create-dmg` * @name `create-dmg` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.createdmg * // Or access via domain * const samePkg = pantry.githubcomcreatedmgcreatedmg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "create-dmg" * console.log(pkg.description) // "A shell script to build fancy DMGs" * console.log(pkg.programs) // ["create-dmg"] * console.log(pkg.versions[0]) // "1.2.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/create-dmg/create-dmg.md * @see https://ts-pkgx.netlify.app/usage */ export declare const createdmgPackage: { /** * The display name of this package. */ name: 'create-dmg'; /** * The canonical domain name for this package. */ domain: 'github.com/create-dmg/create-dmg'; /** * Brief description of what this package does. */ description: 'A shell script to build fancy DMGs'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/create-dmg/create-dmg/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install create-dmg'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['create-dmg']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.2.2', '1.2.1', '1.2.0', '1.1.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) create-dmg -- $SHELL -i'; launchpadInstallCommand: 'launchpad install create-dmg' }; export type CreatedmgPackage = typeof createdmgPackage