seedcord 0.11.0-next.0 → 0.11.0

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
@@ -1,5 +1,5 @@
1
1
  <p align="center">
2
- <img src="../../assets/banner.png" alt="seedcord" width="100%" />
2
+ <img src="https://raw.githubusercontent.com/seedcord/seedcord/main/assets/banner.png" alt="seedcord" width="100%" />
3
3
  </p>
4
4
 
5
5
  ---
@@ -10,4 +10,4 @@ _This repository is a work in progress._
10
10
  - Till a major v1.0.0 release for seedcord, expect breaking changes in minor versions.
11
11
  - Documentation will come soon as well!
12
12
 
13
- I'm planning to release the first major version by Q1 2026. But till then, if you'd like to try using it, you can check out the code in `mock`
13
+ If you'd like to try it out, you can check out the code in `mock`
package/dist/index.cjs CHANGED
@@ -2990,7 +2990,7 @@ var Seedcord = class Seedcord extends Pluggable {
2990
2990
  //#endregion
2991
2991
  //#region src/index.ts
2992
2992
  /** Package version */
2993
- const version = "0.11.0-next.0";
2993
+ const version = "0.11.0";
2994
2994
 
2995
2995
  //#endregion
2996
2996
  exports.AutocompleteHandler = AutocompleteHandler;
package/dist/index.mjs CHANGED
@@ -2964,7 +2964,7 @@ var Seedcord = class Seedcord extends Pluggable {
2964
2964
  //#endregion
2965
2965
  //#region src/index.ts
2966
2966
  /** Package version */
2967
- const version = "0.11.0-next.0";
2967
+ const version = "0.11.0";
2968
2968
 
2969
2969
  //#endregion
2970
2970
  export { AutocompleteHandler, AutocompleteRoute, BuilderComponent, ButtonRoute, Catchable, Checkable, Confirmable, ContextMenuRoute, CustomError, Emojis, EventCatchable, EventHandler, EventMiddleware, HmrModuleHandler, InteractionHandler, InteractionMiddleware, Middleware, MiddlewareType, ModalRoute, Pluggable, Plugin, RegisterCommand, RegisterEvent, RowComponent, Seedcord, SelectMenuRoute, SelectMenuType, SlashRoute, Subscribe, Subscriber, WebhookLog, attemptSendDM, buildSlashRoute, checkBotPermissions, checkPermissions, fetchGuildMember, fetchManyGuildMembers, fetchManyUsers, fetchRole, fetchText, fetchUser, getBotRole, hasPermsToAssign, sendInText, updateMemberRoles, version };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "seedcord",
3
3
  "type": "module",
4
- "version": "0.11.0-next.0",
4
+ "version": "0.11.0",
5
5
  "description": "A Discord bot framework built on top of Discord.js",
6
6
  "repository": {
7
7
  "type": "git",
@@ -45,18 +45,18 @@
45
45
  "dependencies": {
46
46
  "chalk": "^5.6.2",
47
47
  "envapt": "^5.0.3",
48
- "@seedcord/types": "0.4.0-next.0",
49
- "@seedcord/utils": "0.4.0-next.0",
50
- "@seedcord/services": "0.7.0-next.0",
51
- "@seedcord/cli": "0.1.0-next.0"
48
+ "@seedcord/types": "0.4.0",
49
+ "@seedcord/utils": "0.4.0",
50
+ "@seedcord/services": "0.7.0",
51
+ "@seedcord/cli": "0.1.0"
52
52
  },
53
53
  "devDependencies": {
54
54
  "discord.js": "^14.26.4",
55
55
  "reflect-metadata": "^0.2.2",
56
56
  "type-fest": "^5.6.0",
57
57
  "vite": "^8.0.14",
58
- "@seedcord/eslint-config": "1.4.0-next.0",
59
- "@seedcord/tsconfig": "2.0.0-next.0",
58
+ "@seedcord/eslint-config": "1.4.0",
59
+ "@seedcord/tsconfig": "2.0.0",
60
60
  "@seedcord/tsdown-config": "2.0.0"
61
61
  },
62
62
  "publishConfig": {
@@ -96,5 +96,5 @@
96
96
  "test:watch": "vitest dev",
97
97
  "coverage": "vitest run --coverage"
98
98
  },
99
- "readme": "<p align=\"center\">\n <img src=\"../../assets/banner.png\" alt=\"seedcord\" width=\"100%\" />\n</p>\n\n---\n\n_This repository is a work in progress._\n\n- There are no stable releases yet but changes are being made actively.\n- Till a major v1.0.0 release for seedcord, expect breaking changes in minor versions.\n- Documentation will come soon as well!\n\nI'm planning to release the first major version by Q1 2026. But till then, if you'd like to try using it, you can check out the code in `mock`\n"
99
+ "readme": "<p align=\"center\">\n <img src=\"https://raw.githubusercontent.com/seedcord/seedcord/main/assets/banner.png\" alt=\"seedcord\" width=\"100%\" />\n</p>\n\n---\n\n_This repository is a work in progress._\n\n- There are no stable releases yet but changes are being made actively.\n- Till a major v1.0.0 release for seedcord, expect breaking changes in minor versions.\n- Documentation will come soon as well!\n\nIf you'd like to try it out, you can check out the code in `mock`\n"
100
100
  }