-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.47 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.47 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
{
"name": "@zitadel/api",
"version": "0.1.0-alpha.3",
"description": "Generated TypeScript API client for Zitadel NextGen",
"license": "MIT",
"type": "module",
"files": [
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"exports": {
"./package.json": "./package.json",
"./generated/model": {
"@zitadel/source": "./src/generated/model/index.ts",
"types": "./dist/generated/model/index.d.mts",
"import": "./dist/generated/model/index.mjs"
},
"./generated/endpoints/zitadelNextGen": {
"@zitadel/source": "./src/generated/endpoints/zitadelNextGen.ts",
"types": "./dist/generated/endpoints/zitadelNextGen.d.mts",
"import": "./dist/generated/endpoints/zitadelNextGen.mjs"
},
"./generated/endpoints/zitadelNextGen.msw": {
"@zitadel/source": "./src/generated/endpoints/zitadelNextGen.msw.ts",
"types": "./dist/generated/endpoints/zitadelNextGen.msw.d.mts",
"import": "./dist/generated/endpoints/zitadelNextGen.msw.mjs"
},
"./generated/endpoints/zitadelNextGen.zod": {
"@zitadel/source": "./src/generated/endpoints/zitadelNextGen.zod.ts",
"types": "./dist/generated/endpoints/zitadelNextGen.zod.d.mts",
"import": "./dist/generated/endpoints/zitadelNextGen.zod.mjs"
},
"./runtime/base-url": {
"@zitadel/source": "./src/runtime/base-url.ts",
"types": "./dist/runtime/base-url.d.mts",
"import": "./dist/runtime/base-url.mjs"
},
"./runtime/auth": {
"@zitadel/source": "./src/runtime/auth.ts",
"types": "./dist/runtime/auth.d.mts",
"import": "./dist/runtime/auth.mjs"
},
"./runtime/fetch": {
"@zitadel/source": "./src/runtime/fetch.ts",
"types": "./dist/runtime/fetch.d.mts",
"import": "./dist/runtime/fetch.mjs"
},
"./client": {
"@zitadel/source": "./src/runtime/api-factory.ts",
"types": "./dist/runtime/api-factory.d.mts",
"import": "./dist/runtime/api-factory.mjs"
},
"./config": {
"@zitadel/source": "./src/runtime/config.ts",
"types": "./dist/runtime/config.d.mts",
"import": "./dist/runtime/config.mjs"
}
},
"scripts": {
"generate": "orval --config orval.config.ts --clean",
"build": "tsdown"
},
"devDependencies": {
"@faker-js/faker": "catalog:",
"msw": "catalog:",
"orval": "catalog:",
"tsdown": "catalog:",
"tslib": "catalog:",
"zod": "catalog:"
},
"peerDependencies": {
"@tanstack/react-query": "catalog:"
},
"nx": {
"targets": {
"generate": {
"cache": true,
"inputs": [
"{workspaceRoot}/pnpm-lock.yaml",
"{workspaceRoot}/api/openapi/**/*.yaml",
"{projectRoot}/package.json",
"{projectRoot}/orval.config.ts",
"{projectRoot}/src/runtime/base-url.ts",
"{projectRoot}/src/runtime/auth.ts",
"{projectRoot}/src/runtime/fetch.ts",
"{projectRoot}/src/runtime/api-factory.ts",
"{projectRoot}/src/runtime/config.ts"
],
"outputs": [
"{projectRoot}/src/generated"
]
},
"build": {
"dependsOn": [
"generate"
],
"outputs": [
"{projectRoot}/dist"
]
},
"typecheck": {
"dependsOn": [
"generate",
"build"
]
},
"test": {
"dependsOn": [
"generate"
]
},
"lint": {
"dependsOn": [
"generate"
]
}
}
}
}