commandkit 0.1.11-dev.20250406075610 β†’ 0.1.11-dev.20250406081911

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 CHANGED
@@ -15,12 +15,21 @@ CommandKit is a library that makes it easy to handle commands and events in your
15
15
  ## Features
16
16
 
17
17
  - Beginner friendly πŸš€
18
- - Slash + context menu commands support βœ…
19
- - Multiple dev guilds, users, & roles support 🀝
20
- - Automatic command updates πŸ€–
21
- - REST registration behaviour πŸ“
22
- - Easy command line interface πŸ–₯️
23
- - And much more! πŸ§ͺ
18
+ - Suitable for both beginners and advanced users πŸ‘ΆπŸ‘¨β€πŸ’»
19
+ - Slash + context menu commands + prefix commands support βœ…
20
+ - Automatic command registration and updates πŸ€–
21
+ - Command middlewares for easy command management πŸ› οΈ
22
+ - Localization support through `@commandkit/i18n` plugin 🌍
23
+ - Plugin system to extend functionality πŸ”Œ
24
+ - Built-in command line interface for easy development πŸ–₯️
25
+ - Out-of-the-box support for TypeScript and JavaScript πŸ“œ
26
+ - Built-in customizable cache system for speedy data storage and retrieval πŸ—„οΈ
27
+ - User installable/guild scoped commands πŸ”§
28
+ - Custom events support πŸ””
29
+ - JSX support for declaring Discord interaction components and modals 🎨
30
+ - Easy to use interaction components and modals system (forget about collectors) 🧩
31
+ - Less boilerplate code, more productivity πŸ’ͺ
32
+ - and much more...
24
33
 
25
34
  ## Documentation
26
35
 
package/dist/index.js CHANGED
@@ -5617,7 +5617,7 @@ var init_version = __esm({
5617
5617
  "use strict";
5618
5618
  init_cjs_shims();
5619
5619
  version = /* @__MACRO__ $version */
5620
- "0.1.11-dev.20250406075610";
5620
+ "0.1.11-dev.20250406081911";
5621
5621
  }
5622
5622
  });
5623
5623
 
@@ -6411,7 +6411,8 @@ async function showInformation() {
6411
6411
  const knownPlugins = [
6412
6412
  "@commandkit/redis",
6413
6413
  "@commandkit/legacy",
6414
- "@commandkit/devtools"
6414
+ "@commandkit/devtools",
6415
+ "@commandkit/i18n"
6415
6416
  ];
6416
6417
  const runtimeName = (() => {
6417
6418
  if ("Deno" in globalThis && typeof Deno !== "undefined") return "Deno";