{
  "name": "albedo-node",
  "version": "0.8.2",
  "description": "High-performance embedded database for Node.js with native bindings, BSON support, indexing, and replication",
  "keywords": [
    "albedo",
    "database",
    "embedded-database",
    "bson",
    "native",
    "node-addon"
  ],
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/klirix/albedo-node.git"
  },
  "homepage": "https://github.com/klirix/albedo-node#readme",
  "bugs": {
    "url": "https://github.com/klirix/albedo-node/issues"
  },
  "scripts": {
    "build:binding": "zig build -Doptimize=ReleaseFast",
    "build:ts": "bun run tsc -p tsconfig.json",
    "build": "bun run build:binding && bun run build:ts",
    "release": "bun ./scripts/publish.ts"
  },
  "author": "",
  "license": "MIT",
  "devDependencies": {
    "@types/node": "^24.0.0",
    "typescript": "^5.9.3"
  },
  "dependencies": {
    "detect-libc": "^2.1.2"
  }
}