discordeno 22.0.1-next.f274ec6 → 22.0.1-next.f917b16

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 (1) hide show
  1. package/package.json +20 -22
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "discordeno",
3
- "version": "22.0.1-next.f274ec6",
3
+ "version": "22.0.1-next.f917b16",
4
4
  "exports": "./dist/index.js",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -13,37 +13,35 @@
13
13
  "!dist/.tsbuildinfo"
14
14
  ],
15
15
  "scripts": {
16
- "build": "swc src --strip-leading-paths --delete-dir-on-start src --out-dir dist",
16
+ "build": "swc src --strip-leading-paths src --out-dir dist",
17
17
  "build:type": "tsc --declaration --emitDeclarationOnly --declarationDir dist",
18
18
  "release-build": "yarn build && yarn build:type",
19
19
  "check": "biome check --write",
20
- "test:unit-coverage": "c8 mocha --no-warnings 'tests/**/*.spec.ts'",
21
- "test:unit": "c8 --r lcov mocha --no-warnings 'tests/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js discordeno",
22
- "test:unit:watch": "mocha --no-warnings --watch --parallel 'tests/**/*.spec.ts'",
23
- "test:deno-unit": "deno -A ../../node_modules/mocha/bin/mocha.js --config ../../.mocharc.base.cjs 'tests/**/*.spec.ts'",
24
- "test:bun-unit": "bun ../../node_modules/mocha/bin/mocha.js --config ../../.mocharc.base.cjs 'tests/**/*.spec.ts'",
25
- "test:type": "tsc --noEmit",
26
- "test:test-type": "tsc --project tests/tsconfig.json"
20
+ "test:unit": "c8 -r lcov mocha 'tests/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js discordeno",
21
+ "test:deno-unit": "deno -A npm:mocha 'tests/**/*.spec.ts'",
22
+ "test:bun-unit": "bun --bun mocha 'tests/**/*.spec.ts'",
23
+ "test:test-type": "tsc --project tests/tsconfig.json",
24
+ "test:type": "tsc --noEmit"
27
25
  },
28
26
  "dependencies": {
29
- "@discordeno/bot": "22.0.1-next.f274ec6",
30
- "@discordeno/gateway": "22.0.1-next.f274ec6",
31
- "@discordeno/rest": "22.0.1-next.f274ec6",
32
- "@discordeno/types": "22.0.1-next.f274ec6",
33
- "@discordeno/utils": "22.0.1-next.f274ec6"
27
+ "@discordeno/bot": "22.0.1-next.f917b16",
28
+ "@discordeno/gateway": "22.0.1-next.f917b16",
29
+ "@discordeno/rest": "22.0.1-next.f917b16",
30
+ "@discordeno/types": "22.0.1-next.f917b16",
31
+ "@discordeno/utils": "22.0.1-next.f917b16"
34
32
  },
35
33
  "devDependencies": {
36
- "@biomejs/biome": "2.1.4",
37
- "@swc/cli": "^0.7.8",
38
- "@swc/core": "^1.13.3",
39
- "@types/chai": "^5.2.2",
34
+ "@biomejs/biome": "2.3.11",
35
+ "@swc/cli": "^0.7.9",
36
+ "@swc/core": "^1.15.8",
37
+ "@types/chai": "^5.2.3",
40
38
  "@types/mocha": "^10.0.10",
41
- "@types/node": "^24.2.1",
39
+ "@types/node": "^25.0.3",
42
40
  "c8": "^10.1.3",
43
- "chai": "^5.2.1",
44
- "mocha": "patch:mocha@npm%3A11.0.2#~/.yarn/patches/mocha-npm-11.0.2-b5d6b95284.patch",
41
+ "chai": "^6.2.2",
42
+ "mocha": "^11.7.5",
45
43
  "ts-node": "^10.9.2",
46
44
  "tsconfig": "*",
47
- "typescript": "^5.9.2"
45
+ "typescript": "^5.9.3"
48
46
  }
49
47
  }