Files
discordeno/packages/gateway/package.json
dependabot[bot] 34884175d5 build(deps-dev): bump sinon from 21.1.2 to 22.0.0
Bumps [sinon](https://github.com/sinonjs/sinon) from 21.1.2 to 22.0.0.
- [Release notes](https://github.com/sinonjs/sinon/releases)
- [Changelog](https://github.com/sinonjs/sinon/blob/main/docs/changelog.md)
- [Commits](https://github.com/sinonjs/sinon/compare/v21.1.2...v22.0.0)

---
updated-dependencies:
- dependency-name: sinon
  dependency-version: 22.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-05-11 19:53:25 +00:00

53 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.20.0"
},
"optionalDependencies": {
"fzstd": "^0.1.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@swc/cli": "^0.8.1",
"@swc/core": "^1.15.30",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^25.6.0",
"@types/sinon": "^21.0.1",
"@types/ws": "^8.18.1",
"c8": "^11.0.0",
"chai": "^6.2.2",
"mocha": "^11.7.5",
"sinon": "^22.0.0",
"ts-node": "^10.9.2",
"tsconfig": "*",
"typescript": "^6.0.3"
}
}