UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.42 kB
/** * **zippy** - Detect AI-generated text [relatively] quickly via compression ratios * * @domain `github.com/thinkst/zippy` * @programs `zippy` * @version `0.1.3` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install zippy` * @name `zippy` * @dependencies `python.org~3.10` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.zippy * // Or access via domain * const samePkg = pantry.githubcomthinkstzippy * console.log(pkg === samePkg) // true * console.log(pkg.name) // "zippy" * console.log(pkg.description) // "Detect AI-generated text [relatively] quickly v..." * console.log(pkg.programs) // ["zippy"] * console.log(pkg.versions[0]) // "0.1.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/thinkst/zippy.md * @see https://ts-pkgx.netlify.app/usage */ export declare const zippyPackage: { /** * The display name of this package. */ name: 'zippy'; /** * The canonical domain name for this package. */ domain: 'github.com/thinkst/zippy'; /** * Brief description of what this package does. */ description: 'Detect AI-generated text [relatively] quickly via compression ratios'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/thinkst/zippy/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install zippy'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['zippy']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['python.org~3.10']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.1.3', '0.1.2', '0.1.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) zippy -- $SHELL -i'; launchpadInstallCommand: 'launchpad install zippy' }; export type ZippyPackage = typeof zippyPackage