{
  "name": "@flinbein/stateful-rpc",
  "version": "0.3.2",
  "description": "",
  "keywords": [
    "RPC"
  ],
  "homepage": "https://github.com/flinbein/stateful-rpc#readme",
  "bugs": {
    "url": "https://github.com/flinbein/stateful-rpc/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/flinbein/stateful-rpc.git"
  },
  "license": "MIT",
  "author": "dpohvar@gmail.com",
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.js",
  "scripts": {
    "build": "vite build",
    "test": "node --no-deprecation --import=./tests/register.js --test --test-reporter spec ./tests/**/*.test.ts"
  },
  "devDependencies": {
    "@microsoft/api-extractor": "^7.52.11",
    "ts-node": "^10.9.2",
    "typescript": "^5.9.2",
    "unplugin-dts": "^1.0.0-beta.0",
    "vite": "^7.1.3",
    "zod": "^4.1.5"
  },
  "files": [
    "dist",
    "contract.md",
    "network-examples.md"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./channel": {
      "types": "./dist/RPCChannel.d.ts",
      "import": "./dist/RPCChannel.js",
      "require": "./dist/RPCChannel.cjs"
    },
    "./source": {
      "types": "./dist/RPCSource.d.ts",
      "import": "./dist/RPCSource.js",
      "require": "./dist/RPCSource.cjs"
    },
    "./package.json": "./package.json"
  }
}
