From 3c83a8d882cc9bf7731f8d474ac3ec4117c6725c Mon Sep 17 00:00:00 2001 From: Mentlegen <9807008+gentlementlegen@users.noreply.github.com> Date: Thu, 11 Jul 2024 13:58:58 +0900 Subject: [PATCH] chore: manifest.json --- README.md | 3 ++- manifest.json | 10 ++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 manifest.json diff --git a/README.md b/README.md index 7b0867a..2910503 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@ This template repository includes support for the following: - Environment Variables - Conventional Commits - Automatic deployment to Cloudflare Pages +- `manifest.json` plugin description ## Testing @@ -17,7 +18,7 @@ To test with Cypress Studio UI, run yarn cy:open ``` -Otherwise to simply run the tests through the console, run +Otherwise, to simply run the tests through the console, run ```shell yarn cy:run diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..8975439 --- /dev/null +++ b/manifest.json @@ -0,0 +1,10 @@ +{ + "name": "ts-template", + "description": "ts-template for Ubiquibot plugins.", + "commands": { + "command1": { + "example": "/command1 argument", + "description": "Command 1 with an argument." + } + } +}