-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 982 Bytes
/
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
{
"name": "jsonrpc4js",
"version": "1.2.0",
"author": "Shing Rui <sunquakes@outlook.com>",
"description": "A javascript client and server over http or tcp implementation of JSON-RPC 2.0.",
"main": "dist/bundle.cjs",
"module": "dist/bundle.mjs",
"type": "module",
"exports": {
".": {
"import": "./dist/bundle.mjs",
"require": "./dist/bundle.cjs"
}
},
"scripts": {
"test": "jest",
"build": "rollup -c"
},
"keywords": ["typescript", "jsonrpc2.0", "nodejs", "microservice", "nacos", "consul"],
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"rollup": "^4.6.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}