Files
discordeno/packages/benchmarks/package.json
Fleny bd37023847 ESM-only build (#4227)
Co-authored-by: Link <link20050703@gmail.com>
2025-08-22 10:48:28 -07:00

39 lines
1.2 KiB
JSON

{
"name": "benchmarks",
"version": "0.0.0",
"private": true,
"exports": "./dist/index.js",
"type": "module",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/discordeno/discordeno.git"
},
"scripts": {
"build": "swc src --strip-leading-paths --delete-dir-on-start --out-dir dist",
"build:type": "tsc --declaration --emitDeclarationOnly --declarationDir dist",
"release-build": "yarn build && yarn build:type",
"check": "biome check --write",
"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.4",
"@swc/cli": "^0.7.8",
"@swc/core": "^1.13.3",
"@types/benchmark": "^2.1.5",
"@types/node": "^24.2.1",
"ts-node": "^10.9.2",
"tsconfig": "*",
"typescript": "^5.9.2"
}
}