This repository was archived by the owner on Mar 1, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.11 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.11 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@zenstackhq/tanstack-query",
"version": "3.0.0-beta.32",
"description": "TanStack Query Client for consuming ZenStack v3's CRUD service",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc --noEmit && tsup-node && pnpm test:generate && pnpm test:typecheck",
"watch": "tsup-node --watch",
"lint": "eslint src --ext ts",
"test": "vitest run",
"pack": "pnpm pack",
"test:generate": "tsx ../../../scripts/test-generate.ts test --lite-only",
"test:typecheck": "tsc --noEmit --project tsconfig.test.json"
},
"keywords": [
"tanstack-query",
"react-query",
"zenstack",
"orm",
"fullstack"
],
"author": "ZenStack Team",
"license": "MIT",
"exports": {
"./react": {
"import": {
"types": "./dist/react.d.ts",
"default": "./dist/react.js"
},
"require": {
"types": "./dist/react.d.cts",
"default": "./dist/react.cjs"
}
},
"./vue": {
"import": {
"types": "./dist/vue.d.ts",
"default": "./dist/vue.js"
},
"require": {
"types": "./dist/vue.d.cts",
"default": "./dist/vue.cjs"
}
},
"./svelte": {
"import": {
"types": "./dist/svelte.d.ts",
"default": "./dist/svelte.js"
},
"require": {
"types": "./dist/svelte.d.cts",
"default": "./dist/svelte.cjs"
}
},
"./package.json": {
"import": "./package.json",
"require": "./package.json"
}
},
"dependencies": {
"@zenstackhq/common-helpers": "workspace:*",
"@zenstackhq/orm": "workspace:*",
"@zenstackhq/schema": "workspace:*",
"decimal.js": "catalog:",
"superjson": "^2.2.3"
},
"devDependencies": {
"@tanstack/react-query": "catalog:",
"@tanstack/vue-query": "5.90.6",
"@tanstack/svelte-query": "5.90.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/react": "catalog:",
"@zenstackhq/eslint-config": "workspace:*",
"@zenstackhq/language": "workspace:*",
"@zenstackhq/sdk": "workspace:*",
"@zenstackhq/cli": "workspace:*",
"@zenstackhq/typescript-config": "workspace:*",
"@zenstackhq/vitest-config": "workspace:*",
"happy-dom": "^20.0.10",
"nock": "^14.0.10",
"react": "catalog:",
"vue": "catalog:",
"svelte": "catalog:"
},
"peerDependencies": {
"@tanstack/react-query": "^5.0.0",
"@tanstack/vue-query": "^5.0.0",
"@tanstack/svelte-query": "^5.0.0"
},
"peerDependenciesMeta": {
"@tanstack/react-query": {
"optional": true
},
"@tanstack/vue-query": {
"optional": true
},
"@tanstack/svelte-query": {
"optional": true
}
}
}