-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 736 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 736 Bytes
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
{
"name": "iorpc",
"version": "9.2.4",
"keywords": [
"rpc",
"callback",
"univarsal",
"net"
],
"license": "MIT",
"description": "This is a lightweight module for implementing remote asynchronous function calls (RPC) between different scripts using various transports, like WebSockets. It allows calling functions on a remote API and routing responses with minimal configuration.",
"author": "Oleksandr Parashchuk <xjsdev@gmail.com> (https://devjs.us/)",
"repository": {
"type": "git",
"url": "https://github.com/xjsdev/iorpc.git"
},
"scripts": {
"test": "node --test test/*.test.js"
},
"exports": {
".": {
"require": "./index.js",
"import": "./wrapper.mjs"
}
}
}