{
  "name": "birpc",
  "version": "0.2.14",
  "packageManager": "pnpm@8.7.1",
  "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/birpc#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/antfu/birpc.git"
  },
  "bugs": {
    "url": "https://github.com/antfu/birpc/issues"
  },
  "keywords": [
    "rpc",
    "messages"
  ],
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    }
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "devDependencies": {
    "@antfu/eslint-config": "^0.41.0",
    "@antfu/ni": "^0.21.8",
    "@types/node": "^20.5.9",
    "bumpp": "^9.2.0",
    "eslint": "^8.48.0",
    "esno": "^0.17.0",
    "typescript": "^5.2.2",
    "unbuild": "^2.0.0",
    "vite": "^4.4.9",
    "vitest": "^0.34.3"
  },
  "scripts": {
    "build": "unbuild",
    "dev": "unbuild --stub",
    "lint": "eslint .",
    "release": "bumpp && pnpm publish",
    "start": "esno src/index.ts",
    "test": "vitest"
  }
}