-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.39 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.39 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "react-query-grpc-gateway",
"version": "2.0.0",
"description": "React hook for querying gRPC Gateway endpoints using Tanstack Query.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsup",
"test": "jest",
"lint": "eslint .",
"prepare": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dpup/react-query-grpc-gateway.git"
},
"homepage": "https://github.com/dpup/react-query-grpc-gateway",
"keywords": [
"grpc",
"gateway",
"tanstack",
"query",
"react",
"query",
"useQuery",
"typescript"
],
"author": "dpup",
"license": "MIT",
"dependencies": {
"react": "^19.2.0"
},
"peerDependencies": {
"@tanstack/react-query": "^5.35.1"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@testing-library/react": "^15.0.7",
"@testing-library/react-hooks": "^8.0.1",
"@types/eslint": "^8.56.12",
"@types/jest": "^29.5.14",
"@types/react": "^19.2.2",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^9.37.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react-dom": "^19.2.0",
"react-test-renderer": "^19.2.0",
"ts-jest": "^29.4.4",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"typescript-eslint": "^7.18.0"
}
}