claudekit
Version:
CLI tools for Claude Code development workflow
13 lines • 632 B
TypeScript
export { doctor } from './commands/doctor.js';
export { setup } from './commands/setup.js';
export { add } from './commands/add.js';
export { remove } from './commands/remove.js';
export { update } from './commands/update.js';
export { list } from './commands/list.js';
export type { Config, HooksConfig, HookMatcher } from './types/config.js';
export { loadConfig, saveConfig } from './utils/config.js';
export { Logger } from './utils/logger.js';
export { Colors, colors, symbols, status } from './utils/colors.js';
export * from './lib/index.js';
export { default as program } from './cli.js';
//# sourceMappingURL=index.d.ts.map