-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 952 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
36
37
38
39
40
{
"name": "reactive-grpc",
"description": "RxJS wrapper for gRPC and TypeScript.",
"version": "3.0.1",
"author": {
"name": "Julien Scholz",
"email": "[email protected]"
},
"files": [
"./dist",
"./node",
"./web"
],
"exports": {
".": "./dist/common/index.js",
"./node": "./dist/node/index.js",
"./web": "./dist/web/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"format": "eslint --fix --fix-type layout .",
"lint": "eslint --no-fix .",
"build": "tsc",
"prepare": "yarn lint && yarn build"
},
"devDependencies": {
"@grpc/grpc-js": "^1.2.2",
"@types/node": "^14.0.18",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.15.0",
"grpc-web": "^1.2.1",
"rxjs": "^6.6.3",
"typescript": "^3.9.5"
},
"peerDependencies": {
"rxjs": ">=6.0.0 <7.0.0"
}
}