/** * **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 github.com/thinkst/zippy` * @dependencies `python.org~3.10` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomthinkstzippy * 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/thinkst/zippy'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/thinkst/zippy'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/thinkst/zippy -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/thinkst/zippy'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['zippy']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['python.org~3.10']; buildDependencies: readonly []; /** * 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']; aliases: readonly [] }; export type ZippyPackage = typeof zippyPackage