mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-01 16:30:08 +00:00
* update biome to v2 * Run biome check --write * Update biome.jsonc Co-authored-by: Link <lts20050703@gmail.com> * Fix config error * Bump biome version * Update website/yarn.lock * Update biome to 2.1.3 --------- Co-authored-by: Link <lts20050703@gmail.com>
45 lines
1.3 KiB
JSON
45 lines
1.3 KiB
JSON
{
|
|
"name": "benchmarks",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/types/index.d.ts",
|
|
"exports": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/types/index.d.ts"
|
|
},
|
|
"type": "module",
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+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",
|
|
"build-message": "swc src/generateMessage.ts --strip-leading-paths -C sourceMaps=false --out-dir ../../scripts",
|
|
"bench": "node dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"@discordeno/bot": "workspace:^",
|
|
"@discordeno/gateway": "workspace:^",
|
|
"@discordeno/rest": "workspace:^",
|
|
"@discordeno/types": "workspace:^",
|
|
"@discordeno/utils": "workspace:^",
|
|
"benchmark": "^2.1.4"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.1.3",
|
|
"@swc/cli": "^0.5.2",
|
|
"@swc/core": "^1.13.3",
|
|
"@types/benchmark": "^2.1.5",
|
|
"@types/node": "^24.1.0",
|
|
"ts-node": "^10.9.2",
|
|
"tsconfig": "*",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|