ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.97 kB
TypeScript
/**
* **pocketbase** - Open source backend for your next project in 1 file
*
* @domain `pocketbase.io`
* @programs `pocketbase`
* @version `0.28.3` (81 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install pocketbase`
* @aliases `pocketbase`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.pocketbase
* // Or access via domain
* const samePkg = pantry.pocketbaseio
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "pocketbase.io"
* console.log(pkg.description) // "Open source backend for your next project in 1 ..."
* console.log(pkg.programs) // ["pocketbase"]
* console.log(pkg.versions[0]) // "0.28.3" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/pocketbase-io.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const pocketbasePackage: {
/**
* The display name of this package.
*/
name: 'pocketbase.io';
/**
* The canonical domain name for this package.
*/
domain: 'pocketbase.io';
/**
* Brief description of what this package does.
*/
description: 'Open source backend for your next project in 1 file';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pocketbase.io/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pocketbase/pocketbase';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install pocketbase';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['pocketbase'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.28.3', '0.28.2', '0.28.1', '0.28.0', '0.27.2', '0.27.1', '0.27.0', '0.26.6', '0.26.5', '0.26.4', '0.26.3', '0.26.2', '0.26.1', '0.26.0', '0.25.9', '0.25.8', '0.25.7', '0.25.6', '0.25.5', '0.25.4', '0.25.3', '0.25.2', '0.25.1', '0.25.0', '0.24.3', '0.24.2', '0.24.1', '0.24.0', '0.23.12', '0.23.11', '0.23.10', '0.23.9', '0.23.8', '0.23.7', '0.23.6', '0.23.5', '0.23.4', '0.23.3', '0.23.2', '0.23.1', '0.23.0', '0.22.34', '0.22.33', '0.22.32', '0.22.31', '0.22.30', '0.22.29', '0.22.28', '0.22.27', '0.22.26', '0.22.25', '0.22.24', '0.22.23', '0.22.22', '0.22.21', '0.22.20', '0.22.19', '0.22.18', '0.22.17', '0.22.16', '0.22.15', '0.22.14', '0.22.13', '0.22.12', '0.22.11', '0.22.10', '0.22.9', '0.22.8', '0.22.7', '0.22.6', '0.22.5', '0.22.4', '0.22.3', '0.22.2', '0.22.1', '0.22.0', '0.21.3', '0.21.2', '0.21.1', '0.21.0', '0.20.7'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['pocketbase']
};
export type PocketbasePackage = typeof pocketbasePackage