-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 958 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
39
{
"name": "webrpc-react-query",
"version": "0.1.0",
"description": "react-query adapter for webrpc",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "rimraf ./dist && rollup -c --bundleConfigAsCjs",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\""
},
"keywords": [],
"author": "",
"license": "ISC",
"files": [
"dist"
],
"dependencies": {},
"peerDependencies": {
"@tanstack/react-query": ">=4.10.1",
"react": ">=17.0.2"
},
"devDependencies": {
"@tanstack/react-query": "^4.13.4",
"@types/node": "^18.7.14",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"rollup": "^3.2.3",
"rollup-plugin-typescript2": "^0.34.1",
"tslib": "^2.4.0",
"typescript": "^4.8.4"
},
"publishConfig": {
"access": "public"
}
}