quickbotz 0.0.1

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 (4) hide show
  1. package/LICENSE +7 -0
  2. package/README.md +44 -0
  3. package/dist/index.js +57502 -0
  4. package/package.json +24 -0
package/LICENSE ADDED
@@ -0,0 +1,7 @@
1
+ Copyright 2026 John Steel
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,44 @@
1
+ # QuickBotz ⚡
2
+
3
+ A minimal, modern Discord bot framework focused on simplicity and speed.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ bun add quickbotz
9
+ # or
10
+ npm install quickbotz
11
+ ```
12
+
13
+ ## Quick Start
14
+
15
+ ```ts
16
+ import { QuickBotz } from "quickbotz";
17
+ import { SlashCommandBuilder } from "discord.js";
18
+
19
+ const bot = QuickBotz.single({
20
+ token: process.env.TOKEN!,
21
+ });
22
+
23
+ bot.registerCommand({
24
+ data: new SlashCommandBuilder()
25
+ .setName("ping")
26
+ .setDescription("Replies with pong"),
27
+ execute: async (ctx, interaction) => {
28
+ await interaction.reply("Pong!");
29
+ },
30
+ });
31
+
32
+ bot.start();
33
+ ```
34
+
35
+ ## Features
36
+
37
+ - Simple command registration
38
+ - Modular command structure
39
+ - TypeScript-first
40
+ - Works with Bun & Node
41
+
42
+ ## License
43
+
44
+ MIT