discordeno 21.0.1-next.cb8176c → 21.0.1-next.d203fc7

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 (2) hide show
  1. package/README.md +30 -0
  2. package/package.json +10 -10
package/README.md ADDED
@@ -0,0 +1,30 @@
1
+ # Discordeno
2
+
3
+ <img align="right" src="https://raw.githubusercontent.com/discordeno/discordeno/main/website/static/img/logo.png" height="150px" />
4
+
5
+ Discord API library for [Node.JS](https://nodejs.org), [Deno](https://deno.land) & [Bun](https://bun.sh/)
6
+
7
+ [![Discord](https://img.shields.io/discord/785384884197392384?color=7289da&logo=discord&logoColor=dark)](https://discord.com/invite/5vBgXk3UcZ)
8
+ [![codecov](https://codecov.io/gh/discordeno/discordeno/branch/main/graph/badge.svg?token=SQI9OYJ7AK)](https://codecov.io/gh/discordeno/discordeno)
9
+ ![action status](https://github.com/discordeno/discordeno/actions/workflows/lib-check.yml/badge.svg?event=push)
10
+
11
+ Discordeno is actively maintained to guarantee **excellent performance, latest features, and ease of use.**
12
+
13
+ - **Simple, Efficient, and Lightweight**: Discordeno is lightweight, simple to use, and adaptable.
14
+ - By default: No caching.
15
+ - **Functional API**:
16
+ - The functional API eliminates the challenges of extending built-in classes and inheritance while ensuring overall simple but performant code.
17
+ - **Cross Runtime**: Supports the Node.js, Deno, and Bun runtimes.
18
+ - **Standalone components**: Discordeno offers the option to have practically any component of a bot as a separate
19
+ piece, including standalone REST, gateways, custom caches, and more.
20
+ - **Flexibility/Scalability:** Remove any properties, if your bot doesn't need them. For instance, remove `Channel.topic` if your bot doesn't require it. You may save GBs of RAM in this way. A few lines of code are all that are needed to accomplish this for any property on any object.
21
+
22
+ ### Custom Cache
23
+
24
+ Have your cache setup in any way you like. Redis, PGSQL or any cache layer you would like.
25
+
26
+ ## Links
27
+
28
+ - [Website](https://discordeno.js.org/)
29
+ - [Documentation](https://discordeno.js.org)
30
+ - [Discord](https://discord.com/invite/5vBgXk3UcZ)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "discordeno",
3
- "version": "21.0.1-next.cb8176c",
3
+ "version": "21.0.1-next.d203fc7",
4
4
  "main": "./dist/esm/index.js",
5
5
  "types": "./dist/types/index.d.ts",
6
6
  "exports": {
@@ -33,21 +33,21 @@
33
33
  "test:test-type": "tsc --project tests/tsconfig.json"
34
34
  },
35
35
  "dependencies": {
36
- "@discordeno/bot": "21.0.1-next.cb8176c",
37
- "@discordeno/gateway": "21.0.1-next.cb8176c",
38
- "@discordeno/rest": "21.0.1-next.cb8176c",
39
- "@discordeno/types": "21.0.1-next.cb8176c",
40
- "@discordeno/utils": "21.0.1-next.cb8176c"
36
+ "@discordeno/bot": "21.0.1-next.d203fc7",
37
+ "@discordeno/gateway": "21.0.1-next.d203fc7",
38
+ "@discordeno/rest": "21.0.1-next.d203fc7",
39
+ "@discordeno/types": "21.0.1-next.d203fc7",
40
+ "@discordeno/utils": "21.0.1-next.d203fc7"
41
41
  },
42
42
  "devDependencies": {
43
- "@biomejs/biome": "^1.9.4",
43
+ "@biomejs/biome": "2.1.3",
44
44
  "@swc/cli": "^0.5.2",
45
- "@swc/core": "^1.12.9",
45
+ "@swc/core": "^1.13.3",
46
46
  "@types/chai": "^5.2.2",
47
47
  "@types/mocha": "^10.0.10",
48
- "@types/node": "^24.0.1",
48
+ "@types/node": "^24.1.0",
49
49
  "c8": "^10.1.3",
50
- "chai": "^5.2.0",
50
+ "chai": "^5.2.1",
51
51
  "mocha": "patch:mocha@npm%3A11.0.2#~/.yarn/patches/mocha-npm-11.0.2-b5d6b95284.patch",
52
52
  "ts-node": "^10.9.2",
53
53
  "tsconfig": "*",