0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00
astro/benchmark/package.json
Emanuele Stoppa 9b5f3a702d
refactor: use vitest for benchmarks (#12605)
* refactor: use `vitest` for benchmarks

* increase timeout

* increase timeout

* Restore correct label
2024-12-03 17:03:24 +00:00

30 lines
686 B
JSON

{
"name": "astro-benchmark",
"private": true,
"type": "module",
"version": "0.0.0",
"bin": {
"astro-benchmark": "./index.js"
},
"scripts": {
"bench": "pnpm vitest bench --run"
},
"dependencies": {
"@astrojs/mdx": "workspace:*",
"@astrojs/node": "^8.3.4",
"@benchmark/timer": "workspace:*",
"@benchmark/adapter": "workspace:*",
"astro": "workspace:*",
"autocannon": "^7.15.0",
"markdown-table": "^3.0.4",
"mri": "^1.2.0",
"port-authority": "^2.0.1",
"pretty-bytes": "^6.1.1",
"sharp": "^0.33.3",
"tinyexec": "^0.3.1"
},
"devDependencies": {
"@codspeed/vitest-plugin": "3.1.1",
"vitest": "2.1.8"
}
}