commandkit 0.1.3-dev.20231003093543 → 0.1.3-dev.20231003135416
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 +16 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
|
-
<
|
|
2
|
-
<img src="https://raw.githubusercontent.com/underctrl-io/commandkit/master/apps/docs/public/ckit_logo.png" width="
|
|
3
|
-
<br
|
|
4
|
-
|
|
1
|
+
<div align="center">
|
|
2
|
+
<img src="https://raw.githubusercontent.com/underctrl-io/commandkit/master/apps/docs/public/ckit_logo.png" width="60%" />
|
|
3
|
+
<br />
|
|
4
|
+
<a href="https://ctrl.lol/discord"><img src="https://img.shields.io/discord/1055188344188973066?color=5865F2&logo=discord&logoColor=white" alt="support server" /></a>
|
|
5
|
+
<a href="https://www.npmjs.com/package/commandkit"><img src="https://img.shields.io/npm/v/commandkit?maxAge=3600" alt="npm version" /></a>
|
|
6
|
+
<a href="https://www.npmjs.com/package/commandkit"><img src="https://img.shields.io/npm/dt/commandkit?maxAge=3600" alt="npm downloads" /></a>
|
|
7
|
+
</div>
|
|
5
8
|
|
|
6
9
|
# CommandKit
|
|
7
10
|
|
|
8
11
|
CommandKit is a library that makes it easy to handle commands and events in your Discord.js projects.
|
|
9
12
|
|
|
10
|
-
**Supports Discord.js version 14**
|
|
13
|
+
> **Supports Discord.js version 14**
|
|
11
14
|
|
|
12
15
|
## Features
|
|
13
16
|
|
|
@@ -20,7 +23,7 @@ CommandKit is a library that makes it easy to handle commands and events in your
|
|
|
20
23
|
|
|
21
24
|
## Documentation
|
|
22
25
|
|
|
23
|
-
You can find the full documentation [here](https://commandkit.js.org)
|
|
26
|
+
You can find the full documentation [here](https://commandkit.js.org).
|
|
24
27
|
|
|
25
28
|
## Installation
|
|
26
29
|
|
|
@@ -88,13 +91,13 @@ new CommandKit({
|
|
|
88
91
|
validationsPath: path.join(__dirname, 'validations'),
|
|
89
92
|
|
|
90
93
|
// Array of development server IDs (used to register and run devOnly commands)
|
|
91
|
-
devGuildIds: ['
|
|
94
|
+
devGuildIds: ['1234567890', '0987654321'],
|
|
92
95
|
|
|
93
96
|
// Array of developer user IDs (used for devOnly commands)
|
|
94
|
-
devUserIds: ['
|
|
97
|
+
devUserIds: ['1234567890', '0987654321'],
|
|
95
98
|
|
|
96
99
|
// Array of developer role IDs (used for devOnly commands)
|
|
97
|
-
devRoleIds: ['
|
|
100
|
+
devRoleIds: ['1234567890', '0987654321'],
|
|
98
101
|
|
|
99
102
|
// A property that disables CommandKit's built-in validations
|
|
100
103
|
skipBuiltInValidations: true,
|
|
@@ -102,3 +105,7 @@ new CommandKit({
|
|
|
102
105
|
|
|
103
106
|
client.login('YOUR_TOKEN_HERE');
|
|
104
107
|
```
|
|
108
|
+
|
|
109
|
+
## Support and Suggestions
|
|
110
|
+
|
|
111
|
+
If you are looking for support or want to provide suggestions, check out the [Discord](https://ctrl.lol/discord).
|
package/package.json
CHANGED