-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.84 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
{
"name": "@codewithagents/openapi-react-query",
"version": "3.12.2",
"description": "Generate typed React Query v5 hooks from OpenAPI 3.1 specs",
"type": "module",
"bin": {
"openapi-react-query": "dist/cli.js"
},
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json && chmod +x dist/cli.js",
"test": "vitest run --exclude 'src/__tests__/compat-matrix.test.ts'",
"test:matrix": "vitest run src/__tests__/compat-matrix.test.ts",
"test:coverage": "vitest run --coverage --exclude 'src/__tests__/compat-matrix.test.ts'",
"test:mutation": "stryker run",
"lint": "tsc -p tsconfig.build.json --noEmit"
},
"dependencies": {
"openapi-zod-ts": "workspace:*",
"openapi-types": "catalog:",
"prettier": "catalog:"
},
"peerDependencies": {
"@tanstack/react-query": "^5.0.0"
},
"devDependencies": {
"@stryker-mutator/core": "catalog:",
"@stryker-mutator/vitest-runner": "catalog:",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"fast-check": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"keywords": [
"openapi",
"openapi-3.1",
"react-query",
"tanstack-query",
"react-query-codegen",
"codegen",
"typescript",
"hooks",
"useQuery",
"useMutation",
"code-generator"
],
"funding": "https://github.com/sponsors/codewithagents",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/codewithagents/openapi-zod-ts"
},
"homepage": "https://openapi.codewithagents.de/openapi-react-query",
"bugs": {
"url": "https://github.com/codewithagents/openapi-zod-ts/issues"
},
"author": "CodeWithAgents (https://codewithagents.de)",
"publishConfig": {
"access": "public"
}
}