-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.1 KB
/
package.json
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
{
"name": "json-rpc-dual-engine",
"version": "0.10.0",
"description": "JSON-RPC-2.0 client and server protocol-agnostic engine.",
"author": "Leonardo Raele <leonardoraele@gmail.com>",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/leonardoraele/json-rpc-dual-engine"
},
"engines": {
"node": ">=18"
},
"exports": {
".": "./dist/index.js",
"./server": "./dist/json-rpc/json-rpc-server.js",
"./client": "./dist/json-rpc/json-rpc-client.js"
},
"imports": {
"#src/*.js": "./dist/*.js"
},
"files": [
"./dist/**/*"
],
"scripts": {
"test": "node --import=tsx --test **/*.ts",
"build": "tsc",
"prebuild": "rimraf dist",
"prepublish": "npm run build"
},
"devDependencies": {
"@types/node": "^22.10.2",
"expect": "^29.7.0",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"keywords": [
"json",
"rpc",
"jsonrpc",
"json-rpc",
"jsonrpc2",
"json-rpc2",
"server",
"client",
"tcp",
"socket",
"websocket",
"http"
]
}