discordeno 22.0.1-next.ea88819 → 22.0.1-next.ed49677
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/package.json +20 -22
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "discordeno",
|
|
3
|
-
"version": "22.0.1-next.
|
|
3
|
+
"version": "22.0.1-next.ed49677",
|
|
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
|
|
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
|
|
21
|
-
"test:unit": "
|
|
22
|
-
"test:unit
|
|
23
|
-
"test:
|
|
24
|
-
"test:
|
|
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.
|
|
30
|
-
"@discordeno/gateway": "22.0.1-next.
|
|
31
|
-
"@discordeno/rest": "22.0.1-next.
|
|
32
|
-
"@discordeno/types": "22.0.1-next.
|
|
33
|
-
"@discordeno/utils": "22.0.1-next.
|
|
27
|
+
"@discordeno/bot": "22.0.1-next.ed49677",
|
|
28
|
+
"@discordeno/gateway": "22.0.1-next.ed49677",
|
|
29
|
+
"@discordeno/rest": "22.0.1-next.ed49677",
|
|
30
|
+
"@discordeno/types": "22.0.1-next.ed49677",
|
|
31
|
+
"@discordeno/utils": "22.0.1-next.ed49677"
|
|
34
32
|
},
|
|
35
33
|
"devDependencies": {
|
|
36
|
-
"@biomejs/biome": "2.
|
|
37
|
-
"@swc/cli": "^0.7.
|
|
38
|
-
"@swc/core": "^1.
|
|
39
|
-
"@types/chai": "^5.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": "^
|
|
39
|
+
"@types/node": "^25.0.3",
|
|
42
40
|
"c8": "^10.1.3",
|
|
43
|
-
"chai": "^6.
|
|
44
|
-
"mocha": "
|
|
41
|
+
"chai": "^6.2.2",
|
|
42
|
+
"mocha": "^11.7.5",
|
|
45
43
|
"ts-node": "^10.9.2",
|
|
46
44
|
"tsconfig": "*",
|
|
47
|
-
"typescript": "^5.9.
|
|
45
|
+
"typescript": "^5.9.3"
|
|
48
46
|
}
|
|
49
47
|
}
|