-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.44 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "react-query-external-sync",
"version": "1.0.0",
"description": "A tool for syncing React Query state to an external React Query Dev Tools",
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.esm.js",
"files": [
"dist"
],
"types": "dist/types/index.d.ts",
"scripts": {
"build": "tsc --outDir dist --declarationDir dist/types --declaration true && rollup -c rollup.config.mjs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/LovesWorking/react-query-external-sync"
},
"keywords": [
"react-query",
"tanstack",
"state management",
"dev tools",
"react native",
"QA",
"debugging"
],
"author": "LovesWorking (https://github.com/LovesWorking)",
"license": "MIT",
"dependencies": {
"fast-equals": "^5.0.1",
"socket.io-client": "^4.7.4"
},
"peerDependencies": {
"@tanstack/react-query": "^5.17.19",
"react": "^18"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.11.16",
"@types/react": "^18.2.55",
"rollup": "^4.9.6",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
}
}