/** * **skate** - A personal key value store 🛼 * * @domain `charm.sh/skate` * @programs `skate` * @version `1.0.1` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install charm.sh/skate` * @dependencies `curl.se/ca-certs` * @buildDependencies `go.dev@^1.21` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.charmshskate * console.log(pkg.name) // "skate" * console.log(pkg.description) // "A personal key value store 🛼" * console.log(pkg.programs) // ["skate"] * console.log(pkg.versions[0]) // "1.0.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/charm-sh/skate.md * @see https://ts-pkgx.netlify.app/usage */ export declare const charmshskatePackage: { /** * The display name of this package. */ name: 'skate'; /** * The canonical domain name for this package. */ domain: 'charm.sh/skate'; /** * Brief description of what this package does. */ description: 'A personal key value store 🛼'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/charm.sh/skate/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/charmbracelet/skate'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install charm.sh/skate'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +charm.sh/skate -- $SHELL -i'; launchpadInstallCommand: 'launchpad install charm.sh/skate'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['skate']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['curl.se/ca-certs']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.21']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.0.1', '1.0.0', '0.2.2']; aliases: readonly [] }; export type CharmshskatePackage = typeof charmshskatePackage