-
-
Notifications
You must be signed in to change notification settings - Fork 139
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 4.5 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 4.5 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@zenstackhq/tanstack-query",
"displayName": "ZenStack plugin for generating tanstack-query hooks",
"version": "2.22.2",
"description": "ZenStack plugin for generating tanstack-query hooks",
"main": "index.js",
"exports": {
".": {
"default": "./index.js"
},
"./package.json": {
"default": "./package.json"
},
"./runtime": {
"types": "./runtime/index.d.ts",
"import": "./runtime/index.mjs",
"require": "./runtime/index.js",
"default": "./runtime/index.js"
},
"./runtime/react": {
"types": "./runtime/react.d.ts",
"import": "./runtime/react.mjs",
"require": "./runtime/react.js",
"default": "./runtime/react.js"
},
"./runtime/vue": {
"types": "./runtime/vue.d.ts",
"import": "./runtime/vue.mjs",
"require": "./runtime/vue.js",
"default": "./runtime/vue.js"
},
"./runtime/svelte": {
"types": "./runtime/svelte.d.ts",
"import": "./runtime/svelte.mjs",
"require": "./runtime/svelte.js",
"default": "./runtime/svelte.js"
},
"./runtime-v5": {
"types": "./runtime-v5/index.d.ts",
"import": "./runtime-v5/index.mjs",
"require": "./runtime-v5/index.js",
"default": "./runtime-v5/index.js"
},
"./runtime-v5/react": {
"types": "./runtime-v5/react.d.ts",
"import": "./runtime-v5/react.mjs",
"require": "./runtime-v5/react.js",
"default": "./runtime-v5/react.js"
},
"./runtime-v5/vue": {
"types": "./runtime-v5/vue.d.ts",
"import": "./runtime-v5/vue.mjs",
"require": "./runtime-v5/vue.js",
"default": "./runtime-v5/vue.js"
},
"./runtime-v5/svelte": {
"types": "./runtime-v5/svelte.d.ts",
"import": "./runtime-v5/svelte.mjs",
"require": "./runtime-v5/svelte.js",
"default": "./runtime-v5/svelte.js"
},
"./runtime-v5/angular": {
"types": "./runtime-v5/angular.d.ts",
"import": "./runtime-v5/angular.mjs",
"require": "./runtime-v5/angular.js",
"default": "./runtime-v5/angular.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/zenstackhq/zenstack"
},
"scripts": {
"clean": "rimraf dist",
"build": "pnpm lint --max-warnings=0 && pnpm clean && tsc && tsup-node --config ./tsup.config.ts && tsup-node --config ./tsup-v5.config.ts && node scripts/postbuild && copyfiles ./package.json ./README.md ./LICENSE dist && pnpm pack dist --pack-destination ../../../../.build",
"watch": "concurrently \"tsc --watch\" \"tsup-node --config ./tsup.config.ts --watch\" \"tsup-node --config ./tsup-v5.config.ts --watch\"",
"lint": "eslint src --ext ts",
"test": "jest",
"prepublishOnly": "pnpm build"
},
"publishConfig": {
"directory": "dist",
"linkDirectory": true
},
"keywords": [],
"author": "ZenStack Team",
"license": "MIT",
"dependencies": {
"@zenstackhq/runtime": "workspace:*",
"@zenstackhq/sdk": "workspace:*",
"cross-fetch": "^4.0.0",
"semver": "^7.5.2",
"ts-morph": "catalog:",
"ts-pattern": "^4.3.0"
},
"devDependencies": {
"@angular/core": "^20.0.0",
"@angular/common": "^20.0.0",
"@angular/platform-browser": "^20.0.0",
"@tanstack/angular-query-v5": "npm:@tanstack/angular-query-experimental@5.84.x",
"@tanstack/react-query": "^4.29.7",
"@tanstack/react-query-v5": "npm:@tanstack/react-query@5.56.x",
"@tanstack/svelte-query": "^4.29.7",
"@tanstack/svelte-query-v5": "npm:@tanstack/svelte-query@^5.0.0",
"@tanstack/vue-query": "^4.37.0",
"@testing-library/react": "14.0.0",
"@types/react": "18.2.0",
"@types/semver": "^7.3.13",
"@types/tmp": "^0.2.3",
"@zenstackhq/testtools": "workspace:*",
"glob": "^8.1.0",
"jest-environment-jsdom": "^29.7.0",
"nock": "^13.3.6",
"react": "18.2.0",
"react-test-renderer": "^18.2.0",
"rxjs": "^7.8.0",
"svelte": "^4.2.1",
"swr": "^2.0.3",
"tmp": "^0.2.3",
"typescript": "^5.0.0",
"vue": "^3.3.4",
"zone.js": "^0.15.0"
}
}