create-reciple 7.0.0-dev.23 → 7.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/package.json +8 -3
package/README.md
CHANGED
|
@@ -4,4 +4,12 @@ A tool to create starter project for Reciple
|
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
6
|
npm create reciple@latest
|
|
7
|
+
yarn create reciple@latest
|
|
8
|
+
pnpm create reciple@latest
|
|
7
9
|
```
|
|
10
|
+
|
|
11
|
+
## Available Templates
|
|
12
|
+
- Javascript (CommonJS)
|
|
13
|
+
- Javascript (ES Modules)
|
|
14
|
+
- Typescript (CommonJS)
|
|
15
|
+
- Typescript (ES Modules)
|
package/package.json
CHANGED
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-reciple",
|
|
3
3
|
"license": "GPL-3.0",
|
|
4
|
-
"version": "7.0.
|
|
4
|
+
"version": "7.0.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Starter project for Reciple handler",
|
|
7
7
|
"types": "./bin/bin.d.ts",
|
|
8
8
|
"bin": "./bin/bin.js",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/FalloutStudios",
|
|
12
|
+
"directory": "packages/create-reciple"
|
|
13
|
+
},
|
|
9
14
|
"scripts": {
|
|
10
15
|
"clean": "npx rimraf ./bin",
|
|
11
16
|
"build": "npm run clean && npx tsc"
|
|
@@ -25,7 +30,7 @@
|
|
|
25
30
|
"devDependencies": {
|
|
26
31
|
"@types/prompts": "^2.4.2",
|
|
27
32
|
"discord.js": "^14.7.1",
|
|
28
|
-
"reciple": "^7.0.
|
|
33
|
+
"reciple": "^7.0.1"
|
|
29
34
|
},
|
|
30
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "1f3f2d8abeb546a178bef80c91d878f27faddf3e"
|
|
31
36
|
}
|