-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "@mini-rpc/server",
"version": "0.0.14",
"description": "simple but effective RPC framework. Both server and client.",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn src/index.ts",
"prebuild": "rimraf dist",
"build": "tsc",
"postbuild": "cpx package.json dist/ && cpx README.md dist/",
"test": "jest"
},
"keywords": [
"rpc",
"server",
"mini-rpc"
],
"author": "xiaoliu-heng",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mini-rpc/server.git"
},
"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"
},
"dependencies": {
"reflect-metadata": "^0.1.13",
"socket.io": "^4.1.3",
"typedi": "^0.10.0"
}
}