-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.12 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.12 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
{
"name": "storeware-tanstack-query",
"version": "1.0.2",
"description": "A custom wrapper for TanStack Query with React 18",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "vite"
},
"keywords": [
"tanstack-query",
"react-query",
"react",
"query-wrapper",
"typescript"
],
"author": "Julkar Naen Nahian",
"license": "MIT",
"dependencies": {
"@tanstack/react-query": "^5.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^4.3.4",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@tanstack/react-query": "^5.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/Storeware-Apps/storeware-tanstack-query.git"
},
"bugs": {
"url": "https://github.com/Storeware-Apps/storeware-tanstack-query/issues"
},
"homepage": "https://github.com/Storeware-Apps/storeware-tanstack-query#readme"
}