n8n/packages/testing/performance/package.json
Danny Martini 648962eefb
feat(benchmark): Add expression engine benchmark suite with production patterns (#26451)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-11 13:24:40 +00:00

20 lines
554 B
JSON

{
"name": "@n8n/performance",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"format": "biome format --write .",
"format:check": "biome ci .",
"bench": "vitest bench --run",
"bench:baseline": "node scripts/save-baseline.mjs",
"bench:compare": "vitest bench --run --outputJson ./profiles/benchmark-results.json && node scripts/check-regression.mjs"
},
"devDependencies": {
"@codspeed/vitest-plugin": "^4.0.0",
"@n8n/expression-runtime": "workspace:*",
"vitest": "^3.2.0",
"n8n-workflow": "workspace:*"
}
}