mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-01 16:30:08 +00:00
* build(deps-dev): bump typescript and typedoc Bumps [typescript](https://github.com/microsoft/TypeScript) and [typedoc](https://github.com/TypeStrong/TypeDoc). These dependencies needed to be updated together. Updates `typescript` from 5.6.3 to 5.7.2 - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml) - [Commits](https://github.com/microsoft/TypeScript/compare/v5.6.3...v5.7.2) Updates `typedoc` from 0.26.11 to 0.27.1 - [Release notes](https://github.com/TypeStrong/TypeDoc/releases) - [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md) - [Commits](https://github.com/TypeStrong/TypeDoc/compare/v0.26.11...v0.27.1) --- updated-dependencies: - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-minor - dependency-name: typedoc dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update typedoc-plugin-markdown * Update website/yarn.lock * Bump typedoc & typedoc-plugin-markdown --------- 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>
54 lines
2.1 KiB
JSON
54 lines
2.1 KiB
JSON
{
|
|
"name": "@discordeno/bot",
|
|
"version": "20.0.0",
|
|
"main": "./dist/esm/index.js",
|
|
"exports": {
|
|
"import": "./dist/esm/index.js",
|
|
"require": "./dist/cjs/index.cjs",
|
|
"types": "./dist/types/index.d.ts"
|
|
},
|
|
"types": "./dist/types/index.d.ts",
|
|
"type": "module",
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/discordeno/discordeno.git"
|
|
},
|
|
"scripts": {
|
|
"build": "swc src --strip-leading-paths --delete-dir-on-start src --out-dir dist/esm && swc --strip-leading-paths --delete-dir-on-start src --out-dir dist/cjs -C module.type=commonjs && node ../../scripts/fixCjsExtension.js",
|
|
"build:type": "tsc --declaration --emitDeclarationOnly --declarationDir dist/types",
|
|
"release-build": "yarn build && yarn build:type",
|
|
"fmt": "biome format --write",
|
|
"lint": "biome lint --write",
|
|
"test:unit-coverage": "c8 mocha --no-warnings 'tests/unit/**/*.spec.ts'",
|
|
"test:unit": "c8 --r lcov mocha --no-warnings 'tests/unit/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js discordeno",
|
|
"test:deno-unit": "swc tests --strip-leading-paths --delete-dir-on-start --out-dir denoTestsDist && node ../../scripts/fixDenoTestExtension.js && deno test -A --import-map ../../denoImportMap.json denoTestsDist/unit",
|
|
"test:e2e": "c8 --r lcov mocha --no-warnings --jobs 1 --t 30000 'tests/e2e/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js rest",
|
|
"test:unit:watch": "mocha --no-warnings --watch --parallel 'tests/unit/**/*.spec.ts'",
|
|
"test:type": "tsc --noEmit",
|
|
"test:test-type": "tsc --project tests/tsconfig.json"
|
|
},
|
|
"dependencies": {
|
|
"@discordeno/gateway": "20.0.0",
|
|
"@discordeno/rest": "20.0.0",
|
|
"@discordeno/types": "20.0.0",
|
|
"@discordeno/utils": "20.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^1.9.4",
|
|
"@swc/cli": "^0.5.1",
|
|
"@swc/core": "^1.10.2",
|
|
"@types/chai": "^5.0.1",
|
|
"@types/mocha": "^10.0.10",
|
|
"@types/node": "^22.10.2",
|
|
"@types/sinon": "^17.0.3",
|
|
"c8": "^10.1.2",
|
|
"chai": "^5.1.2",
|
|
"mocha": "^10.8.2",
|
|
"sinon": "^19.0.2",
|
|
"ts-node": "^10.9.2",
|
|
"tsconfig": "*",
|
|
"typescript": "^5.7.2"
|
|
}
|
|
}
|