{
  "name": "birpc",
  "type": "module",
  "version": "4.1.0",
  "description": "Message based Two-way remote procedure call",
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
  "license": "MIT",
  "funding": "https://github.com/sponsors/antfu",
  "homepage": "https://github.com/antfu-collective/birpc#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/antfu-collective/birpc.git"
  },
  "bugs": {
    "url": "https://github.com/antfu-collective/birpc/issues"
  },
  "keywords": [
    "rpc",
    "messages"
  ],
  "sideEffects": false,
  "exports": {
    ".": "./dist/index.mjs",
    "./sse/client": "./dist/sse/client.mjs",
    "./sse/server": "./dist/sse/server.mjs",
    "./package.json": "./package.json"
  },
  "types": "./dist/index.d.mts",
  "files": [
    "dist"
  ],
  "devDependencies": {
    "@antfu/eslint-config": "^9.3.0",
    "@antfu/ni": "^30.5.0",
    "@types/node": "^26.2.0",
    "@vitest/coverage-v8": "^4.1.10",
    "bumpp": "^12.2.0",
    "eslint": "^10.8.1",
    "tsdown": "^0.22.14",
    "tsnapi": "^1.2.0",
    "tsx": "^4.23.11",
    "typescript": "^6.0.3",
    "vite": "^8.2.1",
    "vitest": "^4.1.10"
  },
  "scripts": {
    "build": "tsdown",
    "watch": "tsdown --watch",
    "lint": "eslint .",
    "release": "bumpp",
    "start": "tsx src/index.ts",
    "typecheck": "tsc --noEmit",
    "test": "vitest"
  }
}