-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 724 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 724 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
27
28
29
30
31
{
"name": "grpc-server-ts",
"version": "1.1.4",
"description": "a grpc server side module built by typescrpt",
"main": "app/index.js",
"types": "app/index.d.ts",
"scripts": {
"build": "tsc --declaration -w -p .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"homepage": "https://github.com/xuezier/grpc-server-ts",
"keywords": [
"grpc",
"typescript",
"ts",
"grpc-ts"
],
"author": "xuezi",
"license": "ISC",
"dependencies": {
"@grpc/proto-loader": "^0.3.0",
"grpc": "^1.12.4",
"reflect-metadata": "^0.1.12",
"ts-loader": "^4.4.2",
"typescript": "^2.9.2"
},
"devDependencies": {
"@types/node": "^10.5.4",
"typedoc": "^0.12.0"
}
}