-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 798 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 798 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
{
"name": "@pathrule/benchmarks",
"version": "0.1.0",
"private": true,
"type": "module",
"license": "Apache-2.0",
"engines": {
"node": ">=20.11.1"
},
"scripts": {
"bench": "tsx harness/cli.ts",
"build:fixtures": "tsx scripts/build-fixtures.ts",
"fetch:repository": "tsx scripts/fetch-repository.ts",
"smoke:materialize": "tsx scripts/materialize-smoke.ts",
"build:runtime": "tsx scripts/build-runtime.ts",
"sanitize:results": "tsx scripts/sanitize-results.ts",
"report": "tsx scripts/report.ts",
"test": "node --import tsx --test 'harness/**/*.test.ts'",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && npm test"
},
"devDependencies": {
"@types/node": "^24.0.0",
"tsx": "^4.19.2",
"typescript": "^5.8.3"
}
}