@harperfast/rocksdb-js 0.1.1 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harperfast/rocksdb-js",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "RocksDB binding for Node.js",
5
5
  "license": "Apache-2.0",
6
6
  "main": "./dist/index.cjs",
@@ -24,18 +24,18 @@
24
24
  },
25
25
  "devDependencies": {
26
26
  "@rollup/plugin-replace": "6.0.3",
27
- "@types/node": "25.0.10",
27
+ "@types/node": "25.2.0",
28
28
  "@vitest/coverage-v8": "4.0.18",
29
29
  "cross-env": "10.1.0",
30
30
  "dotenv": "17.2.3",
31
31
  "dprint": "0.51.1",
32
- "lefthook": "2.0.15",
33
- "lmdb": "3.5.0",
34
- "node-gyp": "12.1.0",
35
- "oxlint": "1.42.0",
32
+ "lefthook": "2.1.0",
33
+ "lmdb": "3.5.1",
34
+ "node-gyp": "12.2.0",
35
+ "oxlint": "1.43.0",
36
36
  "prebuildify": "6.0.1",
37
37
  "semver": "7.7.3",
38
- "tsdown": "0.20.1",
38
+ "tsdown": "0.20.2",
39
39
  "tslib": "2.8.1",
40
40
  "tsx": "4.21.0",
41
41
  "typescript": "5.9.3",
@@ -45,7 +45,7 @@
45
45
  "node": ">=18"
46
46
  },
47
47
  "rocksdb": {
48
- "version": "10.9.1"
48
+ "version": "10.10.1"
49
49
  },
50
50
  "homepage": "https://github.com/HarperFast/rocksdb-js",
51
51
  "bugs": [
@@ -59,14 +59,14 @@
59
59
  "url": "https://github.com/HarperFast/rocksdb-js"
60
60
  },
61
61
  "optionalDependencies": {
62
- "@harperfast/rocksdb-js-darwin-arm64": "0.1.1",
63
- "@harperfast/rocksdb-js-darwin-x64": "0.1.1",
64
- "@harperfast/rocksdb-js-linux-arm64-glibc": "0.1.1",
65
- "@harperfast/rocksdb-js-linux-x64-glibc": "0.1.1",
66
- "@harperfast/rocksdb-js-linux-arm64-musl": "0.1.1",
67
- "@harperfast/rocksdb-js-linux-x64-musl": "0.1.1",
68
- "@harperfast/rocksdb-js-win32-arm64": "0.1.1",
69
- "@harperfast/rocksdb-js-win32-x64": "0.1.1"
62
+ "@harperfast/rocksdb-js-darwin-arm64": "0.1.3",
63
+ "@harperfast/rocksdb-js-darwin-x64": "0.1.3",
64
+ "@harperfast/rocksdb-js-linux-arm64-glibc": "0.1.3",
65
+ "@harperfast/rocksdb-js-linux-x64-glibc": "0.1.3",
66
+ "@harperfast/rocksdb-js-linux-arm64-musl": "0.1.3",
67
+ "@harperfast/rocksdb-js-linux-x64-musl": "0.1.3",
68
+ "@harperfast/rocksdb-js-win32-arm64": "0.1.3",
69
+ "@harperfast/rocksdb-js-win32-x64": "0.1.3"
70
70
  },
71
71
  "scripts": {
72
72
  "bench": "cross-env CI=1 vitest bench --passWithNoTests --outputJson benchmark-results.json",
@@ -79,16 +79,16 @@
79
79
  "build:bundle:minify": "cross-env MINIFY=1 pnpm build:bundle",
80
80
  "check": "pnpm type-check && pnpm lint",
81
81
  "clean": "node-gyp clean",
82
- "coverage": "tsx scripts/coverage/main.ts",
82
+ "coverage": "tsx scripts/coverage/main.ts --no-file-parallelism",
83
83
  "format": "dprint check",
84
84
  "format:fix": "dprint fmt",
85
85
  "lint": "oxlint",
86
86
  "rebuild": "node-gyp rebuild",
87
87
  "rebuild:debug": "node-gyp rebuild --coverage --debug --verbose",
88
- "test": "cross-env CI=1 node --expose-gc ./node_modules/vitest/vitest.mjs --reporter=verbose",
89
- "test:bun": "cross-env CI=1 bun --bun --config=bunfig.toml ./node_modules/vitest/vitest.mjs --reporter=verbose",
90
- "test:deno": "cross-env CI=1 deno run --allow-all --sloppy-imports ./node_modules/vitest/vitest.mjs",
91
- "test:stress": "cross-env CI=1 node --expose-gc ./node_modules/vitest/vitest.mjs --reporter=verbose --config=vitest-stress.config.ts",
88
+ "test": "cross-env CI=1 node --expose-gc ./node_modules/vitest/vitest.mjs --reporter=verbose --no-file-parallelism",
89
+ "test:bun": "cross-env CI=1 bun --bun --config=bunfig.toml ./node_modules/vitest/vitest.mjs --reporter=verbose --no-file-parallelism",
90
+ "test:deno": "cross-env CI=1 deno run --allow-all --sloppy-imports ./node_modules/vitest/vitest.mjs --no-file-parallelism",
91
+ "test:stress": "cross-env CI=1 node --expose-gc ./node_modules/vitest/vitest.mjs --reporter=verbose --config=vitest-stress.config.ts --no-file-parallelism",
92
92
  "type-check": "tsc --noEmit"
93
93
  }
94
94
  }