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 6 updates Bumps the library-bumps group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.5.10` | `2.5.13` | | [lint-staged](https://github.com/lint-staged/lint-staged) | `17.4.1` | `17.5.1` | | [@swc/core](https://github.com/swc-project/swc/tree/HEAD/packages/core) | `1.16.1` | `1.16.2` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `26.4.0` | `26.5.1` | | [mocha](https://github.com/mochajs/mocha) | `11.8.0` | `12.0.0` | | [tsx](https://github.com/privatenumber/tsx) | `4.23.12` | `4.23.13` | Updates `@biomejs/biome` from 2.5.10 to 2.5.13 - [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.13/packages/@biomejs/biome) Updates `lint-staged` from 17.4.1 to 17.5.1 - [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.4.1...v17.5.1) Updates `@swc/core` from 1.16.1 to 1.16.2 - [Release notes](https://github.com/swc-project/swc/releases) - [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md) - [Commits](https://github.com/swc-project/swc/commits/v1.16.2/packages/core) Updates `@types/node` from 26.4.0 to 26.5.1 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `mocha` from 11.8.0 to 12.0.0 - [Release notes](https://github.com/mochajs/mocha/releases) - [Changelog](https://github.com/mochajs/mocha/blob/main/CHANGELOG.md) - [Commits](https://github.com/mochajs/mocha/compare/v11.8.0...v12.0.0) Updates `tsx` from 4.23.12 to 4.23.13 - [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.12...v4.23.13) --- updated-dependencies: - dependency-name: "@biomejs/biome" dependency-version: 2.5.13 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: library-bumps - dependency-name: lint-staged dependency-version: 17.5.1 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: library-bumps - dependency-name: "@swc/core" dependency-version: 1.16.2 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: library-bumps - dependency-name: "@types/node" dependency-version: 26.5.1 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: library-bumps - dependency-name: mocha dependency-version: 12.0.0 dependency-type: direct:development update-type: version-update:semver-major dependency-group: library-bumps - dependency-name: tsx dependency-version: 4.23.13 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: library-bumps ... Signed-off-by: dependabot[bot] <support@github.com> * Update biome.jsonc --------- 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/rest",
|
|
"version": "22.0.0-beta.2",
|
|
"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:e2e": "c8 -r lcov mocha -t 60000 'tests/e2e/**/*.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.13",
|
|
"@swc/cli": "^0.8.1",
|
|
"@swc/core": "^1.16.2",
|
|
"@types/chai": "^5.2.3",
|
|
"@types/chai-as-promised": "^8.0.2",
|
|
"@types/mocha": "^10.0.10",
|
|
"@types/node": "^26.5.1",
|
|
"@types/sinon": "^22.0.0",
|
|
"c8": "^12.0.0",
|
|
"chai": "^6.2.2",
|
|
"chai-as-promised": "^8.0.2",
|
|
"mocha": "^12.0.0",
|
|
"sinon": "^22.1.0",
|
|
"tsconfig": "*",
|
|
"tsx": "^4.23.13",
|
|
"typescript": "^6.0.3"
|
|
}
|
|
}
|