commandkit 0.0.3 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +8 -0
  2. 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/package.json CHANGED
@@ -1,11 +1,22 @@
1
1
  {
2
2
  "name": "commandkit",
3
- "version": "0.0.3",
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
  }