-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e2bd937
commit 3f3bb50
Showing
2 changed files
with
55 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |