-
-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.22 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.22 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
49
50
51
52
53
54
55
{
"name": "@orpc/tanstack-query",
"type": "module",
"version": "1.13.6",
"license": "MIT",
"homepage": "https://orpc.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/middleapi/orpc.git",
"directory": "packages/tanstack-query"
},
"keywords": [
"orpc",
"tanstack query"
],
"publishConfig": {
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
}
}
},
"exports": {
".": "./src/index.ts"
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"build:watch": "pnpm run build --watch",
"type:check": "tsc -b"
},
"peerDependencies": {
"@orpc/client": "workspace:*",
"@tanstack/query-core": ">=5.80.2"
},
"dependencies": {
"@orpc/shared": "workspace:*"
},
"devDependencies": {
"@angular/core": "^21.2.1",
"@tanstack/angular-query-experimental": "^5.90.25",
"@tanstack/query-core": "^5.90.20",
"@tanstack/react-query": "^5.90.21",
"@tanstack/solid-query": "^5.90.23",
"@tanstack/svelte-query": "^6.1.0",
"@tanstack/vue-query": "^5.92.9",
"svelte": "^5.53.7",
"vue": "^3.5.29",
"zod": "^4.3.6"
}
}