-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 878 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "retrigger-benchmarks",
"version": "1.0.0",
"description": "Reproducible performance laboratory for @retrigger/core — rebuild-time lab, watch latency, scenario matrix",
"main": "benchmark.js",
"scripts": {
"bench": "node benchmark.js",
"bench:hash": "node benchmark.js hash",
"bench:watch": "node benchmark.js watch",
"bench:rebuild": "node benchmark.js rebuild",
"bench:scenarios": "node benchmark.js scenarios",
"bench:all": "node benchmark.js --json results/latest.json --gate",
"summary": "node summary.js results/latest.json"
},
"license": "MIT",
"type": "commonjs",
"engines": {
"node": ">=20.19.0"
},
"dependencies": {
"@parcel/watcher": "^2.6.0",
"chokidar": "^5.0.0",
"watchpack": "^2.5.2"
},
"devDependencies": {
"vite": "^6.4.3",
"webpack": "^5.109.2"
},
"private": true
}