import { RepoKitCommand } from "@repokit/core";

/**
 * Please fill out this command file with your desired settings
 */
export const Commands = new RepoKitCommand({
  name: "<Your Package Name>",
  owner: "<Optional Team or Individual>",
  description: "<Your Package Description>",
  commands: {
    "<your-first-command>": {
      command: "<insert shell command here>",
      description: "A description for your command",
    },
    "<your-second-command>": {
      command: "<insert shell command here>",
      description: "A description for your command",
    },
    "<your-third-command>": {
      command: "<insert shell command here>",
      description: "A description for your command",
    },
  },
});
