UNPKG

@taizo-pro/github-discussions-cli

Version:

A powerful command-line tool for interacting with GitHub Discussions without opening a browser

23 lines 860 B
#!/usr/bin/env node import { Command } from 'commander'; import { listCommand } from './commands/list.js'; import { showCommand } from './commands/show.js'; import { commentCommand } from './commands/comment.js'; import { createCommand } from './commands/create.js'; import { configCommand } from './commands/config.js'; import { searchCommand } from './commands/search.js'; import { statsCommand } from './commands/stats.js'; const program = new Command(); program .name('gh-discussions') .description('CLI tool for GitHub Discussions') .version('1.2.0'); program.addCommand(listCommand); program.addCommand(showCommand); program.addCommand(commentCommand); program.addCommand(createCommand); program.addCommand(configCommand); program.addCommand(searchCommand); program.addCommand(statsCommand); program.parse(); //# sourceMappingURL=index.js.map