-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 974 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 974 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
31
32
33
34
35
36
37
38
39
{
"name": "native-file-io-benchmark",
"version": "1.0.0",
"description": "Performance benchmark comparing native C++ file I/O vs standard TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build:native": "node-gyp rebuild",
"build:ts": "tsc",
"build": "npm run build:ts && npm run build:native",
"benchmark": "ts-node benchmark.ts",
"clean": "node-gyp clean && rimraf build benchmark_data *.js",
"install": "node-gyp rebuild || echo 'Native addon build failed, will use JS fallback'"
},
"keywords": [
"native",
"addon",
"performance",
"file-io",
"simd",
"mmap",
"benchmark"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.10.0",
"node-gyp": "^10.0.0",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"node-addon-api": "^7.1.0"
},
"engines": {
"node": ">=16.0.0"
}
}