commandkit 0.0.2 → 0.0.4
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/CHANGELOG.md +8 -0
- package/README.md +2 -3
- package/package.json +14 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|
6
6
|
|
|
7
|
+
## [0.0.4] - 2023-07-01
|
|
8
|
+
|
|
9
|
+
### Updated
|
|
10
|
+
|
|
11
|
+
- Update package.json with new URLs, scripts, and version
|
|
12
|
+
|
|
13
|
+
## [0.0.3] - 2023-07-01
|
|
14
|
+
|
|
7
15
|
## [0.0.2] - 2023-07-01
|
|
8
16
|
|
|
9
17
|
## [0.0.1] - N/A
|
package/README.md
CHANGED
|
@@ -15,8 +15,7 @@ _Tested with Discord.js version `v14.11.0`_
|
|
|
15
15
|
|
|
16
16
|
# Documentation
|
|
17
17
|
|
|
18
|
-
|
|
19
|
-
~~You can find the full documentation [here](https://commandkit.underctrl.io)~~
|
|
18
|
+
You can find the full documentation [here](https://commandkit.underctrl.io)
|
|
20
19
|
|
|
21
20
|
# Installation
|
|
22
21
|
|
|
@@ -40,7 +39,7 @@ yarn add commandkit
|
|
|
40
39
|
|
|
41
40
|
This is a simple overview of how to set up this library with all the options.
|
|
42
41
|
|
|
43
|
-
|
|
42
|
+
**It's highly recommended you check out the [documentation](https://commandkit.underctrl.io) to fully understand how to work with this library.**
|
|
44
43
|
|
|
45
44
|
```js
|
|
46
45
|
// index.js
|
package/package.json
CHANGED
|
@@ -1,11 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "commandkit",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/notunderctrl/commandkit"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://commandkit.underctrl.io",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"discord.js",
|
|
13
|
+
"command handler",
|
|
14
|
+
"event handler",
|
|
15
|
+
"command validations"
|
|
16
|
+
],
|
|
17
|
+
"dependencies": {},
|
|
6
18
|
"devDependencies": {
|
|
7
19
|
"discord.js": "^14.11.0",
|
|
8
20
|
"tsc": "^2.0.4"
|
|
9
|
-
}
|
|
10
|
-
"dependencies": {}
|
|
21
|
+
}
|
|
11
22
|
}
|