UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.45 kB
/** * **syncthing** - Open source continuous file synchronization application * * @domain `syncthing.net` * @programs `syncthing` * @version `2.0.2` (23 versions available) * @versions From newest version to oldest. * * @install `launchpad install syncthing` * @name `syncthing` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.syncthing * // Or access via domain * const samePkg = pantry.syncthingnet * console.log(pkg === samePkg) // true * console.log(pkg.name) // "syncthing" * console.log(pkg.description) // "Open source continuous file synchronization app..." * console.log(pkg.programs) // ["syncthing"] * console.log(pkg.versions[0]) // "2.0.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/syncthing-net.md * @see https://ts-pkgx.netlify.app/usage */ export declare const syncthingPackage: { /** * The display name of this package. */ name: 'syncthing'; /** * The canonical domain name for this package. */ domain: 'syncthing.net'; /** * Brief description of what this package does. */ description: 'Open source continuous file synchronization application'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/syncthing.net/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install syncthing'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['syncthing']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.0.2', '2.0.1', '2.0.0', '1.30.0', '1.29.7', '1.29.6', '1.29.5', '1.29.4', '1.29.3', '1.29.2', '1.29.1', '1.29.0', '1.28.1', '1.28.0', '1.27.12', '1.27.11', '1.27.10', '1.27.9', '1.27.8', '1.27.7', '1.27.6', '1.27.5', '1.27.4']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) syncthing -- $SHELL -i'; launchpadInstallCommand: 'launchpad install syncthing' }; export type SyncthingPackage = typeof syncthingPackage