-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1013 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
{
"name": "use-cache-network-query",
"version": "1.0.8",
"description": "Apollo Client useQuery with cache-and-network that only returns loading if no cache",
"main": "dist/index.js",
"scripts": {
"prepare": "npm run build",
"build": "tsc -p tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ianchanning/use-cache-network-query.git"
},
"keywords": [
"apollo",
"apollo-client",
"react",
"hooks",
"graphql",
"cache"
],
"author": "Ian Channing <[email protected]> (https://ianchanning.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ianchanning/use-cache-network-query/issues"
},
"homepage": "https://github.com/ianchanning/use-cache-network-query#readme",
"peerDependencies": {
"@apollo/client": ">=3.0.0",
"react": ">=16.8.0"
},
"devDependencies": {
"@types/react": "^18.2.21",
"typescript": "^5.2.2"
}
}