mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-01 00:10:07 +00:00
* build(deps-dev): bump @biomejs/biome from 1.8.3 to 1.9.4 Bumps [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) from 1.8.3 to 1.9.4. - [Release notes](https://github.com/biomejs/biome/releases) - [Changelog](https://github.com/biomejs/biome/blob/main/CHANGELOG.md) - [Commits](https://github.com/biomejs/biome/commits/cli/v1.9.4/packages/@biomejs/biome) --- updated-dependencies: - dependency-name: "@biomejs/biome" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update biome configs / website package.json & lock If we de-sync the website package.json and lock it will make the scripts in website/package.json crash for the invalid biome config --------- 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> Co-authored-by: ITOH <to@itoh.at>
44 lines
1.4 KiB
JSON
44 lines
1.4 KiB
JSON
{
|
|
"name": "benchmarks",
|
|
"version": "0.0.0",
|
|
"main": "./dist/index.js",
|
|
"exports": {
|
|
"import": "./dist/index.js",
|
|
"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:type": "tsc --declaration --emitDeclarationOnly --declarationDir dist/types",
|
|
"release-build": "yarn build && yarn build:type",
|
|
"fmt": "biome format --write",
|
|
"lint": "biome lint --write",
|
|
"build": "swc src --strip-leading-paths --delete-dir-on-start --out-dir dist && node ../../scripts/fixBenchExtension.js",
|
|
"build-message": "swc src/generateMessage.ts --strip-leading-paths -C sourceMaps=false --out-dir ../../scripts && node ../../scripts/fixBenchExtension.js",
|
|
"bench": "node dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"@discordeno/bot": "19.0.0-beta.1",
|
|
"@discordeno/gateway": "19.0.0-alpha.1",
|
|
"@discordeno/rest": "19.0.0-alpha.1",
|
|
"@discordeno/types": "19.0.0-beta.1",
|
|
"@discordeno/utils": "19.0.0-beta.1",
|
|
"benchmark": "^2.1.4"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^1.9.4",
|
|
"@swc/cli": "^0.4.0",
|
|
"@swc/core": "^1.7.26",
|
|
"@types/benchmark": "^2.1.5",
|
|
"@types/node": "^22.7.4",
|
|
"ts-node": "^10.9.2",
|
|
"tsconfig": "*",
|
|
"typescript": "^5.5.4"
|
|
}
|
|
}
|