Files
discordeno/packages/gateway/package.json
T
FlenyandAwesome Stickz 94d14db0ec feat!: Remove fzstd (#5165)
* feat: Remove fzstd

Given node v20 EOL, we can now drop fzstd in favor of node:zlib's zstd implementation

* ci: Bump bun and deno

We don't really have a support policy for deno and bun (for node is the supported upstream) so we bump them to the latest versions

---------

Co-authored-by: Awesome Stickz <38146668+AwesomeStickz@users.noreply.github.com>
2026-07-23 01:12:41 +05:30

50 lines
1.6 KiB
JSON

{
"name": "@discordeno/gateway",
"version": "22.0.0-beta.1",
"exports": "./dist/index.js",
"type": "module",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/discordeno/discordeno.git"
},
"files": [
"dist/**",
"!dist/.tsbuildinfo"
],
"scripts": {
"build": "swc src --strip-leading-paths src --out-dir dist",
"build:type": "tsc --declaration --emitDeclarationOnly --declarationDir dist",
"release-build": "yarn build && yarn build:type",
"check": "biome check --write",
"test:unit": "c8 -r lcov mocha 'tests/unit/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js gateway",
"test:deno-unit": "deno -A npm:mocha 'tests/unit/**/*.spec.ts'",
"test:bun-unit": "bun --bun mocha 'tests/unit/**/*.spec.ts'",
"test:integration": "c8 -r lcov mocha -t 15000 'tests/integration/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js gateway",
"test:test-type": "tsc --project tests/tsconfig.json",
"test:type": "tsc --noEmit"
},
"dependencies": {
"@discordeno/types": "workspace:^",
"@discordeno/utils": "workspace:^",
"ws": "^8.21.0"
},
"devDependencies": {
"@biomejs/biome": "2.5.5",
"@swc/cli": "^0.8.1",
"@swc/core": "^1.15.43",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^26.1.1",
"@types/sinon": "^21.0.1",
"@types/ws": "^8.18.1",
"c8": "^11.0.0",
"chai": "^6.2.2",
"mocha": "^11.7.6",
"sinon": "^22.0.0",
"ts-node": "^10.9.2",
"tsconfig": "*",
"typescript": "^6.0.3"
}
}