djs-builder 0.6.2 → 0.6.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/README.md CHANGED
@@ -238,6 +238,7 @@ module.exports = {
238
238
 
239
239
  ```js
240
240
  cooldown : 5, /// cooldown in seconds
241
+ fastUse : true, /// fast use command without prefix
241
242
  permissions : ["ADMINISTRATOR"], /// permission for slash command
242
243
  ownerOnly : true ,/// only owner can use slash command
243
244
  devOnly : true /// only dev can use slash command
package/handler/helper.js CHANGED
@@ -229,7 +229,7 @@ async function update(client, id, webhookURL) {
229
229
  const { version, note: localNote } = require("../package.json");
230
230
 
231
231
  const { data } = await axios.get(
232
- `https://registry.npmjs.org/testsss-akazaz-lib/latest`
232
+ `https://registry.npmjs.org/djs-builder/latest`
233
233
  );
234
234
  const new_version = data.version;
235
235
  const note = data.discription || "";
@@ -253,7 +253,7 @@ async function update(client, id, webhookURL) {
253
253
  const embed = new EmbedBuilder()
254
254
  .setTitle("🎉 New version available")
255
255
  .setDescription(
256
- `${note}\n\n**Your version:** ${version} ⏰\n**New version:** ${new_version} 🚀\n- Try running \`npm i testsss-akazaz-lib@latest\` to update. ❤`
256
+ `${note}\n\n**Your version:** ${version} ⏰\n**New version:** ${new_version} 🚀\n- Try running \`npm i djs-builder@latest\` to update. ❤`
257
257
  )
258
258
  .setColor("Yellow")
259
259
  .setTimestamp();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
 
2
2
  {
3
3
  "name": "djs-builder",
4
- "version": "0.6.2",
4
+ "version": "0.6.4",
5
5
  "description": "Discord.js bot builder. Supports Ts and Js.",
6
6
  "main": "handler/starter.js",
7
7
  "dependencies": {
@@ -10,7 +10,6 @@
10
10
  "cli-table3": "^0.6.5",
11
11
  "discord-inviter": "^0.9.3",
12
12
  "discord.js": "^14.21.0",
13
- "mongoose": "^8.17.0",
14
- "testsss-akazaz-lib": "^0.0.13"
13
+ "mongoose": "^8.17.0"
15
14
  }
16
15
  }