-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.06 KB
/
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
{
"name": "@emdgroup/react-query",
"version": "1.2.0",
"description": "React hooks for the fetch API with support for client-side caching",
"type": "module",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/emdgroup/react-lib/tree/main/packages/query",
"repository": {
"type": "git",
"url": "https://github.com/emdgroup/react-lib.git"
},
"scripts": {
"docs:build": "rm -rf docs README.md && typedoc --hideInPageTOC --excludeNotDocumented --disableSources --theme github-wiki src/index.ts",
"docs": "npm run docs:build && ts-node ../../bin/merge-docs Exports.md RequestOptions.md QueryResponse.md HTTPError.md",
"prepack": "npm run docs && rm -rf dist && tsc --build --force"
},
"files": [
"dist"
],
"keywords": [
"react",
"query",
"fetch",
"cache"
],
"author": "Moritz Onken <[email protected]>",
"license": "Apache-2.0",
"peerDependencies": {
"react": ">= 17"
},
"dependencies": {
"@emdgroup/react-storage": "^1.0.3"
}
}