{
  "name": "librpc-web-mod",
  "version": "1.3.0",
  "description": "Promise-based RPC client and server for web workers (forked from @librpc/web)",
  "keywords": [
    "rpc",
    "worker",
    "web-worker",
    "threads",
    "concurrency"
  ],
  "license": "MIT",
  "homepage": "https://github.com/cmdcolin/librpc-web",
  "repository": {
    "type": "git",
    "url": "https://github.com/cmdcolin/librpc-web"
  },
  "author": {
    "name": "Vladimir Bykov",
    "email": "broadsw.rd@yandex.ru",
    "url": "https://github.com/broadsw0rd"
  },
  "files": [
    "dist",
    "esm"
  ],
  "main": "dist/index.js",
  "module": "esm/index.js",
  "dependencies": {
    "serialize-error": "^8.1.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.2",
    "jest": "^29.6.1",
    "rimraf": "^5.0.0",
    "ts-jest": "^29.1.1",
    "typescript": "^5.1.6"
  },
  "scripts": {
    "clean": "rimraf dist",
    "prebuild": "npm run clean",
    "build": "npm run build:esm && npm run build:cjs",
    "build:esm": "tsc --outDir esm",
    "build:cjs": "tsc --module commonjs --outDir dist",
    "test": "jest",
    "preversion": "npm test && npm run build",
    "postversion": "git push --follow-tags"
  }
}
