{
  "name": "offheap",
  "version": "0.4.0",
  "description": "High-performance off-heap caching framework for Node.js written in Rust",
  "main": "index.js",
  "types": "index.d.ts",
  "files": [
    "index.js",
    "index.d.ts",
    "binding.js",
    "binding.d.ts",
    "scripts/postinstall.js"
  ],
  "napi": {
    "name": "offheap",
    "package": {
      "name": "@onlykgzin/offheap"
    },
    "triples": {
      "additional": [
        "x86_64-unknown-linux-musl",
        "aarch64-apple-darwin",
        "aarch64-unknown-linux-musl",
        "aarch64-unknown-linux-gnu"
      ]
    }
  },
  "scripts": {
    "artifacts": "napi artifacts",
    "build": "napi build --platform --release --js binding.js --dts binding.d.ts",
    "build:debug": "napi build --platform --js binding.js --dts binding.d.ts",
    "prepublishOnly": "napi prepublish -t npm --skip-gh-release",
    "postinstall": "node scripts/postinstall.js",
    "test": "node --test tests/index.test.js",
    "benchmark": "node --expose-gc benchmarks/js_bench.js",
    "docs:dev": "vitepress dev docs",
    "docs:build": "vitepress build docs",
    "docs:preview": "vitepress preview docs"
  },
  "devDependencies": {
    "@napi-rs/cli": "^2.18.4",
    "lru-cache": "^11.5.2",
    "tinybench": "^2.9.0",
    "vitepress": "^1.0.2"
  },
  "engines": {
    "node": ">= 18"
  },
  "license": "MIT OR Apache-2.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ryangustav/OffHeap.git"
  },
  "optionalDependencies": {
    "@onlykgzin/offheap-win32-x64-msvc": "0.4.0",
    "@onlykgzin/offheap-darwin-x64": "0.4.0",
    "@onlykgzin/offheap-linux-x64-gnu": "0.4.0",
    "@onlykgzin/offheap-linux-x64-musl": "0.4.0",
    "@onlykgzin/offheap-darwin-arm64": "0.4.0",
    "@onlykgzin/offheap-linux-arm64-musl": "0.4.0",
    "@onlykgzin/offheap-linux-arm64-gnu": "0.4.0"
  }
}