-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 945 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 945 Bytes
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": "@devup-api/react-query",
"version": "0.0.0",
"license": "Apache-2.0",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && bun build --target node --outfile=dist/index.js src/index.ts --production --packages=external && bun build --target node --outfile=dist/index.cjs --format=cjs src/index.ts --production --packages=external"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@devup-api/fetch": "workspace:*",
"@tanstack/react-query": ">=5.90"
},
"peerDependencies": {
"react": "*",
"@tanstack/react-query": "*"
},
"devDependencies": {
"@testing-library/react-hooks": "^8.0.1",
"@types/node": "^24.10",
"@types/react": "^19.2",
"happy-dom": "^20.0.11",
"typescript": "^5.9"
}
}