-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.3 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.3 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
{
"name": "react-query-lightbase-codegen",
"version": "3.1.6",
"license": "MIT",
"description": "Generate Axios API clients and React Query options from OpenAPI specifications",
"exports": "./dist/index.js",
"bin": {
"react-query-lightbase-codegen": "./dist/cli.js"
},
"files": ["src", "dist"],
"author": {
"name": "Oliver Winter",
"email": "owinter86@gmail.com"
},
"keywords": [
"rest",
"client",
"swagger",
"open-api",
"fetch",
"data fetching",
"code-generation",
"react",
"react-query",
"axios",
"tanstack"
],
"repository": {
"type": "git",
"url": "https://github.com/lightbasenl/react-query-codegen"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"example": "ts-node example/index.ts && biome check --fix --unsafe",
"check": "biome check --write .",
"updates": "npx npm-check-updates -i",
"release": "release-it"
},
"dependencies": {
"axios": "^1.7.0",
"openapi-types": "^12.1.3",
"swagger2openapi": "^7.0.8",
"yaml": "^2.7.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tanstack/react-query": "^5.66.9",
"@types/node": "^22.13.5",
"@types/swagger2openapi": "^7.0.4",
"release-it": "^17.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"peerDependencies": {
"@tanstack/react-query": ">= 5.50.0",
"axios": "^1.7.0"
}
}