-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.66 KB
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
31
32
33
34
{
"name": "ix-engine-v2",
"version": "0.2.0",
"private": true,
"type": "module",
"scripts": {
"fixtures": "node tools/scripts/generate-fixtures.mjs",
"install:native": "node tools/scripts/install-native.mjs",
"install:native:windows": "powershell -NoProfile -ExecutionPolicy Bypass -File tools/scripts/install-native.ps1",
"install:native:unix": "bash tools/scripts/install-native.sh",
"test": "vitest run --config vitest.config.ts",
"test:watch": "vitest --config vitest.config.ts",
"bench:once": "node tools/scripts/run-once-benchmark.mjs",
"bench:prepared:once": "node tools/scripts/run-once-prepared-benchmark.mjs",
"bench:report": "node tools/scripts/benchsuite-ripgrep.mjs run",
"bench:report:diag": "node tools/scripts/bench-report.mjs",
"bench:contenders:direct": "node tools/scripts/bench-contenders-direct.mjs",
"bench:reset": "node tools/scripts/reset-bench-state.mjs",
"bench:loop": "node tools/scripts/bench-loop-suite.mjs",
"bench:prepared:loop": "node tools/scripts/bench-prepared-loop-suite.mjs",
"bench:loop:diag": "node tools/scripts/bench-loop.mjs",
"bench:suite:list": "node tools/scripts/benchsuite-ripgrep.mjs list",
"bench:suite:download": "node tools/scripts/benchsuite-ripgrep.mjs download",
"bench:suite:bootstrap-data": "node tools/scripts/benchsuite-data-bootstrap.mjs",
"bench:suite:run": "node tools/scripts/benchsuite-ripgrep.mjs run",
"dashboard": "node tools/scripts/dashboard-server.mjs",
"materialize:tests": "node tools/scripts/materialize-tests.mjs"
},
"devDependencies": {
"@types/node": "^24.6.1",
"typescript": "^5.9.3",
"vitest": "^2.1.9"
}
}