microfox
Version:
Universal CLI tool for creating modern TypeScript packages with npm availability checking
23 lines (18 loc) • 644 B
TypeScript
import { Command } from 'commander';
declare const buildCommand: Command;
interface PackageInfo {
name: string;
title: string;
description: string;
platformType: 'communication' | 'tool' | 'agent' | 'internal';
path: string;
dependencies: string[];
status: 'stable' | 'external' | 'semiStable' | 'unstable' | 'oauthConnector' | 'webhookConnector' | 'internal';
documentation: string;
icon: string;
constructors: any[];
extraInfo: string[];
authType: 'oauth2' | 'apikey' | 'none';
}
declare const addCommand: Command;
export { type PackageInfo, addCommand, buildCommand as kickstartCommand };