-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.77 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.77 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
{
"name": "react-openapi-generator-hook",
"version": "0.3.3-experimental",
"main": "dist/react-openapi-hook.umd.js",
"module": "dist/react-openapi-hook.es.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "vite build",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"generate:apis": "openapi-generator-cli generate -i openapi-specs.yaml -g typescript-axios --additional-properties=useSingleRequestParameter=true --skip-validate-spec -o ./generated",
"coverage": "vitest run --coverage --silent"
},
"keywords": [
"OpenApi Generator",
"React",
"Hook",
"useApi"
],
"author": "Stefano Marzo",
"license": "MIT",
"description": "React hook to perform HTTP calls with OpenApi Generator models and handle responses efficiently",
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.34.0",
"@openapitools/openapi-generator-cli": "2.23.1",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.3.0",
"@types/react": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"@vitejs/plugin-react": "^5.0.1",
"@vitest/coverage-v8": "^3.2.4",
"axios": "^1.8.0",
"eslint": "^9.34.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"happy-dom": "^18.0.1",
"react": "18.0.0",
"react-dom": "18.0.0",
"rollup-plugin-visualizer": "^6.0.3",
"typescript": "^5.9.2",
"vite": "7.1.3",
"vitest": "^3.2.4"
},
"peerDependencies": {
"@openapitools/openapi-generator-cli": ">=2.18.0",
"axios": ">=1.8.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
}
}