-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.29 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.29 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@harperdb/rocksdb-js",
"version": "0.0.0",
"description": "RocksDB binding for Node.js",
"license": "Apache-2.0",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.js",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"type": "module",
"gypfile": true,
"scripts": {
"bench": "vitest bench --outputJson benchmark-results.json",
"bench:bun": "bun --bun bench",
"bench:deno": "deno run --allow-all --sloppy-imports ./node_modules/vitest/vitest.mjs bench",
"build": "pnpm build:bundle && pnpm rebuild",
"build:bundle": "rimraf dist && tsdown -c tsdown.config.ts",
"build:debug": "SKIP_MINIFY=1 pnpm build:bundle",
"check": "pnpm type-check && pnpm lint",
"clean": "node-gyp clean",
"coverage": "tsx scripts/coverage/main.ts",
"lint": "oxlint",
"prepublishOnly": "pnpm build:bundle && pnpm prebuild",
"prebuild": "echo 'TODO'",
"rebuild": "node-gyp rebuild",
"rebuild:debug": "node-gyp rebuild --coverage --debug --verbose",
"test": "node --expose-gc ./node_modules/vitest/vitest.mjs --reporter=verbose",
"test:bun": "bun --bun test --config=bunfig.toml",
"test:deno": "deno run --allow-all --sloppy-imports ./node_modules/vitest/vitest.mjs",
"test:stress": "node --expose-gc ./node_modules/vitest/vitest.mjs --reporter=verbose --config=vitest-stress.config.ts",
"type-check": "tsc --noEmit"
},
"files": [
"binding.gyp",
"dist",
"prebuilds",
"src/binding",
"vendor"
],
"dependencies": {
"@harperdb/extended-iterable": "1.0.1",
"msgpackr": "1.11.5",
"ordered-binary": "1.6.0"
},
"devDependencies": {
"@rollup/plugin-replace": "6.0.2",
"@types/node": "24.9.2",
"@vitest/coverage-v8": "3.2.4",
"dotenv": "17.2.3",
"esbuild": "0.25.11",
"lefthook": "2.0.1",
"lmdb": "3.4.3",
"node-gyp": "11.5.0",
"oxlint": "1.24.0",
"prebuildify": "6.0.1",
"rimraf": "6.0.1",
"semver": "7.7.3",
"tsdown": "0.15.11",
"tslib": "2.8.1",
"tsx": "4.20.6",
"typescript": "5.9.3",
"vitest": "3.2.4"
},
"engines": {
"node": ">=18"
},
"rocksdb": {
"version": "10.4.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"msgpackr-extract"
]
}
}