UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.5 kB
/** * **act** - Run your GitHub Actions locally 🚀 * * @domain `github.com/nektos/act` * @programs `act` * @version `0.2.80` (38 versions available) * @versions From newest version to oldest. * * @install `launchpad install act` * @name `act` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.act * // Or access via domain * const samePkg = pantry.githubcomnektosact * console.log(pkg === samePkg) // true * console.log(pkg.name) // "act" * console.log(pkg.description) // "Run your GitHub Actions locally 🚀" * console.log(pkg.programs) // ["act"] * console.log(pkg.versions[0]) // "0.2.80" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/nektos/act.md * @see https://ts-pkgx.netlify.app/usage */ export declare const actPackage: { /** * The display name of this package. */ name: 'act'; /** * The canonical domain name for this package. */ domain: 'github.com/nektos/act'; /** * Brief description of what this package does. */ description: 'Run your GitHub Actions locally 🚀'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/nektos/act/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install act'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['act']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.2.80', '0.2.79', '0.2.78', '0.2.77', '0.2.76', '0.2.75', '0.2.74', '0.2.73', '0.2.72', '0.2.71', '0.2.70', '0.2.69', '0.2.68', '0.2.67', '0.2.66', '0.2.65', '0.2.64', '0.2.63', '0.2.62', '0.2.61', '0.2.60', '0.2.59', '0.2.58', '0.2.57', '0.2.56', '0.2.55', '0.2.54', '0.2.53', '0.2.52', '0.2.51', '0.2.50', '0.2.49', '0.2.48', '0.2.47', '0.2.46', '0.2.45', '0.2.44', '0.2.43']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) act -- $SHELL -i'; launchpadInstallCommand: 'launchpad install act' }; export type ActPackage = typeof actPackage