mirror of
https://github.com/discordeno/discordeno.git
synced 2026-09-17 08:47:22 +00:00
* build(deps-dev): bump the library-bumps group across 1 directory with 8 updates Bumps the library-bumps group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.5.7` | `2.5.8` | | [lint-staged](https://github.com/lint-staged/lint-staged) | `17.2.0` | `17.3.0` | | [turbo](https://github.com/vercel/turborepo) | `2.10.7` | `2.10.9` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `26.1.2` | `26.2.0` | | [sinon](https://github.com/sinonjs/sinon) | `22.0.0` | `22.1.0` | | [@types/sinon](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/sinon) | `21.0.1` | `22.0.0` | | [tsx](https://github.com/privatenumber/tsx) | `4.23.9` | `4.23.12` | | [ws](https://github.com/websockets/ws) | `8.21.2` | `8.21.3` | Updates `@biomejs/biome` from 2.5.7 to 2.5.8 - [Release notes](https://github.com/biomejs/biome/releases) - [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md) - [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.5.8/packages/@biomejs/biome) Updates `lint-staged` from 17.2.0 to 17.3.0 - [Release notes](https://github.com/lint-staged/lint-staged/releases) - [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md) - [Commits](https://github.com/lint-staged/lint-staged/compare/v17.2.0...v17.3.0) Updates `turbo` from 2.10.7 to 2.10.9 - [Release notes](https://github.com/vercel/turborepo/releases) - [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md) - [Commits](https://github.com/vercel/turborepo/compare/v2.10.7...v2.10.9) Updates `@types/node` from 26.1.2 to 26.2.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `sinon` from 22.0.0 to 22.1.0 - [Release notes](https://github.com/sinonjs/sinon/releases) - [Changelog](https://github.com/sinonjs/sinon/blob/main/CHANGES.md) - [Commits](https://github.com/sinonjs/sinon/compare/v22.0.0...v22.1.0) Updates `@types/sinon` from 21.0.1 to 22.0.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/sinon) Updates `tsx` from 4.23.9 to 4.23.12 - [Release notes](https://github.com/privatenumber/tsx/releases) - [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs) - [Commits](https://github.com/privatenumber/tsx/compare/v4.23.9...v4.23.12) Updates `ws` from 8.21.2 to 8.21.3 - [Release notes](https://github.com/websockets/ws/releases) - [Commits](https://github.com/websockets/ws/compare/8.21.2...8.21.3) --- updated-dependencies: - dependency-name: "@biomejs/biome" dependency-version: 2.5.8 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: library-bumps - dependency-name: lint-staged dependency-version: 17.3.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: library-bumps - dependency-name: turbo dependency-version: 2.10.9 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: library-bumps - dependency-name: "@types/node" dependency-version: 26.2.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: library-bumps - dependency-name: sinon dependency-version: 22.1.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: library-bumps - dependency-name: "@types/sinon" dependency-version: 22.0.0 dependency-type: direct:development update-type: version-update:semver-major dependency-group: library-bumps - dependency-name: tsx dependency-version: 4.23.12 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: library-bumps - dependency-name: ws dependency-version: 8.21.3 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: library-bumps ... Signed-off-by: dependabot[bot] <support@github.com> * bump biome.jsonc schema --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Fleny <fleny113@outlook.com>
50 lines
1.5 KiB
JSON
50 lines
1.5 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'",
|
|
"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'",
|
|
"test:test-type": "tsc --project tests/tsconfig.json",
|
|
"test:type": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@discordeno/types": "workspace:^",
|
|
"@discordeno/utils": "workspace:^"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.5.8",
|
|
"@swc/cli": "^0.8.1",
|
|
"@swc/core": "^1.15.47",
|
|
"@types/chai": "^5.2.3",
|
|
"@types/mocha": "^10.0.10",
|
|
"@types/node": "^26.2.0",
|
|
"@types/sinon": "^22.0.0",
|
|
"@types/ws": "^8.18.1",
|
|
"c8": "^12.0.0",
|
|
"chai": "^6.2.2",
|
|
"mocha": "^11.8.0",
|
|
"sinon": "^22.1.0",
|
|
"tsconfig": "*",
|
|
"tsx": "^4.23.12",
|
|
"typescript": "^6.0.3",
|
|
"ws": "^8.21.3"
|
|
}
|
|
}
|