Files
trezor-suite/suite-common/react-query/package.json
Jiří Čermák ed64ef4171 feat: create @suite-common/react-query package
- Include provider for React and React Native app.
- Since the configuration and related libraries differ, it does make sense to divide them.
- Define mutation and query keys (common, desktop, mobile).
- Re-export @tanstack/react-query hooks.
2026-01-23 10:40:47 +01:00

20 lines
550 B
JSON

{
"name": "@suite-common/react-query",
"version": "1.0.0",
"private": true,
"license": "See LICENSE.md in repo root",
"sideEffects": false,
"main": "src/index",
"scripts": {
"depcheck": "yarn g:depcheck",
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
"type-check": "yarn g:tsc --build"
},
"dependencies": {
"@suite-common/suite-utils": "workspace:^",
"@tanstack/react-query": "5.90.16",
"@tanstack/react-query-devtools": "5.91.2",
"react": "19.1.0"
}
}