1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
| {
| "name": "birpc",
| "type": "module",
| "version": "2.9.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": {
| ".": {
| "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": "^6.3.0",
| "@antfu/ni": "^28.0.0",
| "@types/node": "^24.10.1",
| "@vitest/coverage-v8": "3.0.9",
| "bumpp": "^10.3.2",
| "eslint": "^9.39.1",
| "tsx": "^4.21.0",
| "typescript": "^5.9.3",
| "unbuild": "^3.6.1",
| "vite": "^7.2.6",
| "vitest": "^4.0.15"
| },
| "scripts": {
| "build": "unbuild",
| "dev": "unbuild --stub",
| "lint": "eslint .",
| "release": "bumpp",
| "start": "tsx src/index.ts",
| "typecheck": "tsc --noEmit",
| "test": "vitest"
| }
| }
|
|