UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.54 kB
/** * **opencanaryd** - Modular and decentralised honeypot * * @domain `github.com/thinkst/opencanary` * @programs `opencanaryd` * @version `0.9.6` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install opencanaryd` * @name `opencanaryd` * @dependencies `python.org>=3.10<3.12`, `tcpdump.org`, `openssl.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.opencanaryd * // Or access via domain * const samePkg = pantry.githubcomthinkstopencanary * console.log(pkg === samePkg) // true * console.log(pkg.name) // "opencanaryd" * console.log(pkg.description) // "Modular and decentralised honeypot" * console.log(pkg.programs) // ["opencanaryd"] * console.log(pkg.versions[0]) // "0.9.6" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/thinkst/opencanary.md * @see https://ts-pkgx.netlify.app/usage */ export declare const opencanarydPackage: { /** * The display name of this package. */ name: 'opencanaryd'; /** * The canonical domain name for this package. */ domain: 'github.com/thinkst/opencanary'; /** * Brief description of what this package does. */ description: 'Modular and decentralised honeypot'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/thinkst/opencanary/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install opencanaryd'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['opencanaryd']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['python.org>=3.10<3.12', 'tcpdump.org', 'openssl.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.9.6', '0.9.5', '0.9.4', '0.9.3', '0.9.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) opencanaryd -- $SHELL -i'; launchpadInstallCommand: 'launchpad install opencanaryd' }; export type OpencanarydPackage = typeof opencanarydPackage