reciple 8.0.0-dev.10 → 8.0.0-dev.12

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
@@ -16,8 +16,16 @@
16
16
  <a href="https://www.codefactor.io/repository/github/falloutstudios/reciple/overview/main">
17
17
  <img src="https://www.codefactor.io/repository/github/falloutstudios/reciple/badge/main">
18
18
  </a>
19
+ <br>
20
+ <div style="padding-top: 1rem">
21
+ <a href="https://discord.gg/VzP8qW7Z8d">
22
+ <img src="https://discord.com/api/guilds/993105237000855592/embed.png?style=banner2">
23
+ </a>
24
+ </div>
19
25
  </h3>
20
26
 
27
+ ---
28
+
21
29
  ## Highlights
22
30
 
23
31
  - [CLI based handler](#cli-usage)
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Reciple is a Discord.js bot framework",
4
4
  "homepage": "https://reciple.js.org/docs/reciple",
5
5
  "license": "GPL-3.0",
6
- "version": "8.0.0-dev.10",
6
+ "version": "8.0.0-dev.12",
7
7
  "main": "./dist/index.js",
8
8
  "module": "./dist/esm.mjs",
9
9
  "types": "./dist/index.d.ts",
@@ -41,8 +41,8 @@
41
41
  "README.md"
42
42
  ],
43
43
  "dependencies": {
44
- "@reciple/update-checker": "^8.0.0-dev.3",
45
- "@reciple/utils": "^8.0.0-dev.3",
44
+ "@reciple/update-checker": "^8.0.0-dev.4",
45
+ "@reciple/utils": "^8.0.0-dev.4",
46
46
  "commander": "^11.1.0",
47
47
  "dotenv": "^16.3.1",
48
48
  "fallout-utility": "^2.7.1",
@@ -54,7 +54,7 @@
54
54
  "typescript": "^5.2.2"
55
55
  },
56
56
  "devDependencies": {
57
- "@reciple/core": "^8.0.0-dev.6",
57
+ "@reciple/core": "^8.0.0-dev.7",
58
58
  "@types/micromatch": "^4.0.3",
59
59
  "@types/semver": "^7.5.4",
60
60
  "discord.js": "^14.13.0"
@@ -63,5 +63,5 @@
63
63
  "@reciple/core": "^8.0.0-dev.5",
64
64
  "discord.js": "^14.7.1"
65
65
  },
66
- "gitHead": "951da53e9fee2e7e922895d85818503876ef3f32"
66
+ "gitHead": "ec6958703aded3cf587c9d1512c5d1c2fcd23c1a"
67
67
  }
package/static/config.mjs CHANGED
@@ -5,12 +5,12 @@ import { version } from '@reciple/core';
5
5
  // @ts-check
6
6
 
7
7
  /**
8
- * @type {import('reciple').RecipleConfig}
8
+ * @satisfies {import('reciple').RecipleConfig}
9
9
  */
10
10
  export const config = {
11
11
  token: process.env.TOKEN ?? '',
12
12
  commands: {
13
- contextMenuCommands: {
13
+ contextMenuCommand: {
14
14
  enabled: true,
15
15
  enableCooldown: true,
16
16
  acceptRepliedInteractions: false,