{
  "name": "@harperfast/rocksdb-js",
  "version": "2.3.0",
  "description": "RocksDB binding for Node.js",
  "homepage": "https://github.com/HarperFast/rocksdb-js",
  "bugs": [
    {
      "type": "link",
      "url": "https://github.com/HarperFast/rocksdb-js/issues"
    }
  ],
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/HarperFast/rocksdb-js"
  },
  "bin": {
    "rocksdb-js": "./bin/rocksdb-js.mjs"
  },
  "files": [
    "dist",
    "docs"
  ],
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "exports": {
    ".": {
      "types": "./dist/index.d.js",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    }
  },
  "dependencies": {
    "@harperfast/extended-iterable": "1.0.3",
    "msgpackr": "2.0.4",
    "ordered-binary": "1.6.1"
  },
  "devDependencies": {
    "@rollup/plugin-replace": "6.0.3",
    "@types/node": "26.0.0",
    "@vitest/coverage-v8": "4.1.9",
    "cross-env": "10.1.0",
    "dotenv": "17.4.2",
    "lefthook": "2.1.9",
    "lmdb": "3.5.5",
    "node-gyp": "13.0.0",
    "oxfmt": "0.55.0",
    "oxlint": "1.70.0",
    "prebuildify": "6.0.1",
    "semver": "7.8.4",
    "tar": "7.5.16",
    "tsdown": "0.22.3",
    "tslib": "2.8.1",
    "tsx": "4.22.4",
    "typescript": "6.0.3",
    "vitest": "4.1.9"
  },
  "optionalDependencies": {
    "@harperfast/rocksdb-js-darwin-arm64": "2.3.0",
    "@harperfast/rocksdb-js-darwin-x64": "2.3.0",
    "@harperfast/rocksdb-js-linux-arm64-glibc": "2.3.0",
    "@harperfast/rocksdb-js-linux-arm64-musl": "2.3.0",
    "@harperfast/rocksdb-js-linux-x64-glibc": "2.3.0",
    "@harperfast/rocksdb-js-linux-x64-musl": "2.3.0",
    "@harperfast/rocksdb-js-win32-arm64": "2.3.0",
    "@harperfast/rocksdb-js-win32-x64": "2.3.0"
  },
  "engines": {
    "node": "^22.18.0 || >=24.0.0"
  },
  "gypfile": true,
  "rocksdb": {
    "version": "11.1.1"
  },
  "scripts": {
    "bench": "cross-env CI=1 node --expose-gc ./node_modules/vitest/vitest.mjs bench --passWithNoTests --outputJson benchmark-results.json",
    "bench:bun": "cross-env CI=1 bun --bun bench",
    "bench:deno": "cross-env CI=1 deno run --allow-all --sloppy-imports ./node_modules/vitest/vitest.mjs bench",
    "build": "pnpm build:bundle && pnpm rebuild",
    "build:binding": "node-gyp build",
    "build:binding:debug": "node-gyp build --coverage --debug --verbose",
    "build:bundle": "node scripts/clean-dist.mjs && tsdown -c tsdown.config.ts",
    "build:bundle:minify": "cross-env MINIFY=1 pnpm build:bundle",
    "check": "pnpm type-check && pnpm lint && pnpm fmt:check",
    "clean": "node-gyp clean",
    "coverage": "tsx scripts/coverage/main.ts",
    "coverage:native": "tsx scripts/native-test/coverage.mjs",
    "fmt": "oxfmt",
    "fmt:check": "oxfmt --check",
    "lint": "oxlint",
    "rebuild": "node-gyp rebuild",
    "rebuild:debug": "node-gyp rebuild --coverage --debug --verbose",
    "test": "cross-env CI=1 node --expose-gc ./node_modules/vitest/vitest.mjs --reporter=verbose",
    "test:bun": "cross-env CI=1 bun --bun --config=bunfig.toml ./node_modules/vitest/vitest.mjs --reporter=verbose",
    "test:deno": "cross-env CI=1 deno run --allow-all --sloppy-imports --v8-flags=--expose-gc ./node_modules/vitest/vitest.mjs",
    "test:stress": "cross-env CI=1 node --expose-gc ./node_modules/vitest/vitest.mjs --reporter=verbose --config=vitest-stress.config.ts",
    "test:native": "tsx scripts/native-test/run.mjs",
    "type-check": "tsc --noEmit"
  }
}