vcord.js 1.0.5 → 1.0.6

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 +13 -1
  2. package/package.json +1 -10
package/README.md CHANGED
@@ -154,4 +154,16 @@ Contributions are welcome! Please feel free to submit a Pull Request.
154
154
 
155
155
  ## License
156
156
 
157
- This project is licensed under the MIT License - see the LICENSE file for details.
157
+ This project is licensed under the MIT License - see the LICENSE file for details.
158
+
159
+
160
+ // "devDependencies": {
161
+ // "eslint": "^8.40.0",
162
+ // "jest": "^29.5.0"
163
+ // },
164
+
165
+ "dependencies": {
166
+ "node-fetch": "^2.6.9",
167
+ "ws": "^8.13.0",
168
+ "zlib": "^1.0.5"
169
+ },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vcord.js",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "main": "vcord/vcord.js",
5
5
  "description": "A lightweight Discord bot framework for JavaScript",
6
6
  "scripts": {
@@ -17,19 +17,10 @@
17
17
  ],
18
18
  "author": "Wlappiz",
19
19
  "license": "MIT",
20
- "dependencies": {
21
- "node-fetch": "^2.6.9",
22
- "ws": "^8.13.0",
23
- "zlib": "^1.0.5"
24
- },
25
20
  "repository": {
26
21
  "type": "git",
27
22
  "url": "https://github.com/WLappiz/vcord.js.git"
28
23
  },
29
- "devDependencies": {
30
- "eslint": "^8.40.0",
31
- "jest": "^29.5.0"
32
- },
33
24
  "engines": {
34
25
  "node": ">=16.9.0"
35
26
  }