UNPKG

microfox

Version:

Universal CLI tool for creating modern TypeScript packages with npm availability checking

21 lines (18 loc) 615 B
export { kickstartCommand } from './commands/kickstart.js'; export { addCommand } from './commands/add.js'; import 'commander'; 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 };