-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 893 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
{
"name": "rtk-query-grpc-web",
"version": "0.0.1-india",
"description": "RTK (Redux Toolkit) base Query for grpc-web proxied APIs",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/vniche/rtk-query-grpc-web.git"
},
"bugs": {
"url": "https://github.com/vniche/rtk-query-grpc-web/issues"
},
"keywords": [
"redux",
"react",
"toolkit",
"redux-toolkit",
"grpc-web"
],
"scripts": {
"build": "rm -rf dist && tsc",
"deploy": "npm publish"
},
"author": "vniche <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@reduxjs/toolkit": "^1.6.1",
"@types/google-protobuf": "^3.15.5",
"typescript": "^4.4.2"
},
"dependencies": {
"@improbable-eng/grpc-web": "^0.14.1",
"google-protobuf": "^3.18.0-rc.2"
}
}