@microfox/cli
Version:
Universal CLI tool for creating modern TypeScript packages with npm availability checking
19 lines (16 loc) • 547 B
TypeScript
export { kickstartCommand } from './commands/kickstart.js';
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';
}
export type { PackageInfo };