Skip to content

Commit

Permalink
chore: improve README and bump
Browse files Browse the repository at this point in the history
  • Loading branch information
kravetsone committed Mar 16, 2024
1 parent e2bd937 commit 3f3bb50
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 22 deletions.
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
```
51 changes: 29 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
@@ -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"
}
}

0 comments on commit 3f3bb50

Please sign in to comment.