UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.46 kB
/** * **spicedb** - Open Source, Google Zanzibar-inspired database for scalably storing and querying fine-grained authorization data * * @domain `authzed.com/spicedb` * @programs `spicedb` * @version `1.44.4` (25 versions available) * @versions From newest version to oldest. * * @install `launchpad install spicedb` * @name `spicedb` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.spicedb * // Or access via domain * const samePkg = pantry.authzedcomspicedb * console.log(pkg === samePkg) // true * console.log(pkg.name) // "spicedb" * console.log(pkg.description) // "Open Source, Google Zanzibar-inspired database ..." * console.log(pkg.programs) // ["spicedb"] * console.log(pkg.versions[0]) // "1.44.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/authzed-com/spicedb.md * @see https://ts-pkgx.netlify.app/usage */ export declare const spicedbPackage: { /** * The display name of this package. */ name: 'spicedb'; /** * The canonical domain name for this package. */ domain: 'authzed.com/spicedb'; /** * Brief description of what this package does. */ description: 'Open Source, Google Zanzibar-inspired database for scalably storing and querying fine-grained authorization data'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/authzed.com/spicedb/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install spicedb'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['spicedb']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.44.4', '1.44.3', '1.44.2', '1.44.0', '1.43.0', '1.42.1', '1.42.0', '1.41.0', '1.40.1', '1.40.0', '1.39.1', '1.39.0', '1.38.1', '1.38.0', '1.37.2', '1.37.1', '1.37.0', '1.36.2', '1.36.1', '1.36.0', '1.35.3', '1.35.2', '1.35.1', '1.35.0', '1.34.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type SpicedbPackage = typeof spicedbPackage