From 3f3bb50b52c2bd1c14e8f5bc5f16313ab7b71dda Mon Sep 17 00:00:00 2001 From: Kravets <57632712+kravetsone@users.noreply.github.com> Date: Sun, 17 Mar 2024 01:05:28 +0300 Subject: [PATCH] chore: improve README and bump --- README.md | 26 ++++++++++++++++++++++++++ package.json | 51 +++++++++++++++++++++++++++++---------------------- 2 files changed, 55 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index dec5f15..885a162 100644 --- a/README.md +++ b/README.md @@ -1 +1,27 @@ # create-gramio + +Scaffolding your [GramIO](https://gramio.netlify.app/) project with the environment with easy! + +- Npm + +```bash +npm create gramio ./bot +``` + +- Yarn + +```bash +yarn create gramio ./bot +``` + +- Pnpm + +```bash +pnpm create gramio ./bot +``` + +- Bun + +```bash +bun create gramio ./bot +``` diff --git a/package.json b/package.json index a915abf..b1dd0fe 100644 --- a/package.json +++ b/package.json @@ -1,24 +1,31 @@ { - "name": "create-gramio", - "version": "0.0.1", - "main": "dist/index.js", - "type": "commonjs", - "scripts": { - "prepublishOnly": "tsc" - }, - "bin": { - "create-gramio": "dist/index.js" - }, - "devDependencies": { - "@types/bun": "^1.0.5", - "@types/minimist": "^1.2.5", - "typescript": "^5.3.3" - }, - "files": [ - "dist" - ], - "dependencies": { - "minimist": "^1.2.8", - "tasuku": "^2.0.1" - } + "name": "create-gramio", + "version": "0.0.2", + "description": "Scaffolding your GramIO project with the environment with easy!", + "keywords": [ + "gramio", + "scaffolding", + "create", + "template" + ], + "main": "dist/index.js", + "type": "commonjs", + "scripts": { + "prepublishOnly": "tsc" + }, + "bin": { + "create-gramio": "dist/index.js" + }, + "devDependencies": { + "@types/bun": "^1.0.5", + "@types/minimist": "^1.2.5", + "typescript": "^5.3.3" + }, + "files": [ + "dist" + ], + "dependencies": { + "minimist": "^1.2.8", + "tasuku": "^2.0.1" + } }