-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.13 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.13 KB
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
{
"name": "@mini-rpc/client",
"version": "0.0.3",
"description": "simple but effective RPC framework. Both server and client.",
"main": "index.js",
"private": false,
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"postbuild": "cpx package.json dist/ && cpx README.md dist/",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mini-rpc/client.git"
},
"keywords": [
"rpc",
"client",
"typescript"
],
"author": "xiaoliu-heng",
"license": "MIT",
"bugs": {
"url": "https://github.com/mini-rpc/client/issues"
},
"homepage": "https://github.com/mini-rpc/client#readme",
"dependencies": {
"socket.io-client": "^4.1.3"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@babel/preset-env": "^7.14.8",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^26.0.24",
"@types/node": "^16.3.3",
"babel-jest": "^27.0.6",
"cpx": "^1.5.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5"
}
}