Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zenstack-v3",
"version": "3.0.0-beta.17",
"version": "3.0.0-beta.18",
"description": "ZenStack",
"packageManager": "[email protected]",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publisher": "zenstack",
"displayName": "ZenStack CLI",
"description": "FullStack database toolkit with built-in access control and automatic API generation.",
"version": "3.0.0-beta.17",
"version": "3.0.0-beta.18",
"type": "module",
"author": {
"name": "ZenStack Team"
Expand Down
40 changes: 36 additions & 4 deletions packages/clients/tanstack-query/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zenstackhq/tanstack-query",
"version": "3.0.0-beta.17",
"version": "3.0.0-beta.18",
"description": "TanStack Query Client for consuming ZenStack v3's CRUD service",
"main": "index.js",
"type": "module",
Expand Down Expand Up @@ -32,6 +32,30 @@
"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": {
Expand All @@ -43,6 +67,8 @@
},
"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:",
Expand All @@ -53,17 +79,23 @@
"@zenstackhq/vitest-config": "workspace:*",
"happy-dom": "^20.0.10",
"nock": "^14.0.10",
"react": "catalog:"
"react": "catalog:",
"vue": "catalog:",
"svelte": "catalog:"
},
"peerDependencies": {
"@tanstack/react-query": "^5.0.0",
"react": "^18 || ^19"
"@tanstack/vue-query": "^5.0.0",
"@tanstack/svelte-query": "^5.0.0"
},
"peerDependenciesMeta": {
"@tanstack/react-query": {
"optional": true
},
"react": {
"@tanstack/vue-query": {
"optional": true
},
"@tanstack/svelte-query": {
"optional": true
}
}
Expand Down
Loading