-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.27 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.27 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
35
36
37
{
"name": "node-vector-bench",
"version": "0.1.0",
"description": "Implementation-agnostic vector search benchmarking for Node.js",
"type": "module",
"private": true,
"scripts": {
"prepare": "node --max-old-space-size=16384 --import tsx/esm scripts/prepare-datasets.ts",
"bench": "time nice -n 19 node --max-old-space-size=16384 --import tsx/esm scripts/run-benchmark.ts",
"isolated": "nice -n 19 node --max-old-space-size=16384 --import tsx/esm scripts/run-isolated.ts",
"all": "run-s prepare bench:*",
"bench:xs": "npm run bench -- profiles/xs.json",
"bench:s": "npm run bench -- profiles/s.json",
"bench:m": "npm run bench -- profiles/m.json",
"bench:l": "npm run bench -- profiles/l.json",
"bench:xl": "npm run bench -- profiles/xl.json",
"bench:xxl": "npm run bench -- profiles/xxl.json",
"charts": "tsx scripts/generate-charts.ts"
},
"dependencies": {
"@duckdb/node-api": "^1.4.4-r.1",
"@lancedb/lancedb": "^0.26.2",
"@photostructure/sqlite-vec": "^1.0.0",
"apache-arrow": "^18.1.0",
"cli-table3": "^0.6.5",
"npm-run-all2": "^8.0.4",
"usearch": "^2.21.4"
},
"engines": {
"node": ">=22.5.0"
},
"devDependencies": {
"@types/node": "^25.2.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}