{
  "name": "@reddb-io/client",
  "version": "1.19.0",
  "description": "Thin remote-only RedDB driver. Downloads the `red_client` binary on install. Speaks RedWire/gRPC/HTTP. Embedded URIs (memory://, file://, red:///path) are rejected — use @reddb-io/sdk for those.",
  "type": "module",
  "main": "src/index.js",
  "browser": "./src/index.browser.js",
  "exports": {
    ".": {
      "browser": {
        "types": "./index.browser.d.ts",
        "import": "./src/index.browser.js"
      },
      "node": {
        "types": "./index.d.ts",
        "import": "./src/index.js"
      },
      "bun": {
        "types": "./index.d.ts",
        "import": "./src/index.js"
      },
      "deno": {
        "types": "./index.d.ts",
        "import": "./src/index.js"
      },
      "default": {
        "types": "./index.browser.d.ts",
        "import": "./src/index.browser.js"
      }
    },
    "./node": {
      "types": "./index.d.ts",
      "import": "./src/index.js"
    },
    "./browser": {
      "types": "./index.browser.d.ts",
      "import": "./src/index.browser.js"
    },
    "./bun": {
      "types": "./index.d.ts",
      "import": "./src/index.js"
    },
    "./deno": {
      "types": "./index.d.ts",
      "import": "./src/index.js"
    },
    "./package.json": "./package.json"
  },
  "types": "./index.d.ts",
  "files": [
    "src/",
    "index.d.ts",
    "index.browser.d.ts",
    "postinstall.js",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=18"
  },
  "keywords": [
    "reddb",
    "database",
    "client",
    "driver",
    "remote",
    "thin-client",
    "redwire",
    "grpc",
    "http"
  ],
  "license": "MIT",
  "homepage": "https://github.com/reddb-io/reddb",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/reddb-io/reddb.git",
    "directory": "drivers/js-client"
  },
  "bugs": {
    "url": "https://github.com/reddb-io/reddb/issues"
  },
  "scripts": {
    "postinstall": "node postinstall.js",
    "test": "node --test test/*.test.mjs"
  }
}