reciple 3.1.2 → 3.1.3

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.
Files changed (2) hide show
  1. package/README.md +7 -2
  2. package/package.json +9 -4
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
  </h1>
5
5
 
6
6
  <h3 align="center">
7
- <a href="https://npmjs.org/package/reciple">
7
+ <a href="https://npmjs.org/package/reciple">
8
8
  <img src="https://img.shields.io/npm/v/reciple?label=latest%20npm%20release%20">
9
9
  </a>
10
10
  <a href="https://github.com/FalloutStudios/Reciple/blob/main/LICENSE">
@@ -14,11 +14,13 @@
14
14
  <img src="https://www.codefactor.io/repository/github/falloutstudios/reciple/badge/main">
15
15
  </a>
16
16
 
17
- A simple Dicord.js handler that just works.<h3>
17
+ A simple Dicord.js handler that just works.
18
+ </h3>
18
19
 
19
20
  ****
20
21
 
21
22
  ## Installation
23
+
22
24
  To install the bot, run the following command in your terminal:
23
25
 
24
26
  ```bash
@@ -58,6 +60,9 @@ You can override the given token using your terminal
58
60
  ```bash
59
61
  npx reciple --token "YOUR_TOKEN_HERE"
60
62
  ```
63
+
64
+ Use env variable
65
+
61
66
  ```bash
62
67
  npx reciple --token "env:TOKEN_VARIABLE"
63
68
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reciple",
3
- "version": "3.1.2",
3
+ "version": "3.1.3",
4
4
  "bin": "bin/bin.js",
5
5
  "license": "GPL-3.0",
6
6
  "main": "bin/index.js",
@@ -23,7 +23,7 @@
23
23
  "build": "yarn clean && yarn exec tsc",
24
24
  "build:publish": "yarn build && yarn npm publish && yarn build:docs && yarn publish:docs",
25
25
  "build:pub-prerelease": "yarn build && yarn publish --tag pre",
26
- "build:docs": "yarn workspace docs build",
26
+ "build:docs": "yarn exec typedoc --tsconfig ./docs/typedoc.json",
27
27
  "update:docs": "yarn workspace docs update",
28
28
  "test": "yarn build && yarn test:start",
29
29
  "test:start": "cd test && yarn exec reciple -D",
@@ -50,15 +50,20 @@
50
50
  "chalk": "4.1.2",
51
51
  "commander": "^9.4.0",
52
52
  "dotenv": "^16.0.1",
53
- "fallout-utility": "^1.4.2",
53
+ "fallout-utility": "^1.4.3",
54
54
  "semver": "^7.3.7",
55
55
  "wildcard-match": "^5.1.2",
56
56
  "yaml": "^2.1.1"
57
57
  },
58
58
  "devDependencies": {
59
- "@types/node": "^18.0.6",
59
+ "@types/node": "^18.6.1",
60
60
  "@types/semver": "^7.3.10",
61
+ "better-docs": "^2.7.2",
61
62
  "discord.js": "^14.0.3",
63
+ "typedoc": "^0.23.9",
64
+ "typedoc-plugin-discord-types": "^1.0.2",
65
+ "typedoc-plugin-djs-links": "^1.2.0",
66
+ "typedoc-plugin-mdn-links": "^2.0.0",
62
67
  "typescript": "^4.7.4"
63
68
  },
64
69
  "peerDependencies": {