{
  "name": "@webbuf/rw",
  "version": "3.0.28",
  "description": "Read and write buffers, optimized with Rust/WASM for the web, node.js, deno, and bun.",
  "repository": {
    "type": "git",
    "url": "https://github.com/ryanxcharles/webbuf"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "engines": {
    "node": ">=20.8.0"
  },
  "keywords": [
    "buffer",
    "base64",
    "hex",
    "uint256",
    "int256",
    "uint128",
    "int128",
    "rust",
    "wasm"
  ],
  "author": "Ryan X. Charles <ryan@ryanxcharles.com> (https://ryanxcharles.com)",
  "license": "MIT",
  "peerDependencies": {
    "@webbuf/fixedbuf": "^3.0.28",
    "@webbuf/numbers": "^3.0.28",
    "@webbuf/webbuf": "^3.0.28"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.0.6",
    "@types/node": "^22.13.2",
    "buffer": "^6.0.3",
    "rimraf": "^6.0.1",
    "typescript": "^5.7.3",
    "vite": "^6.1.0",
    "vitest": "^3.0.5"
  },
  "scripts": {
    "clean": "rimraf dist",
    "benchmark": "vitest --config vitest.benchmark.config.ts run",
    "test": "vitest --run",
    "test:browser": "vitest --run --browser",
    "typecheck": "tsc --noEmit",
    "lint": "biome lint --write --unsafe",
    "format": "biome format --write",
    "fix": "pnpm run typecheck && pnpm run lint && pnpm run format",
    "build": "tsc -p tsconfig.build.json"
  }
}