-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
83 lines (83 loc) · 2.04 KB
/
package.json
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
{
"name": "@zodios/react",
"description": "React hooks for zodios",
"version": "10.4.5",
"main": "lib/index.js",
"module": "lib/index.mjs",
"typings": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"lib"
],
"author": {
"name": "ecyrbe",
"email": "ecyrbe@gmail.com"
},
"homepage": "https://github.com/ecyrbe/zodios-react",
"repository": {
"type": "git",
"url": "https://github.com/ecyrbe/zodios-react.git"
},
"license": "MIT",
"keywords": [
"axios",
"openapi",
"zod",
"autocomplete",
"validation"
],
"scripts": {
"prebuild": "rimraf lib",
"build": "tsup",
"major-rc": "npm version premajor --preid=rc",
"minor-rc": "npm version preminor --preid=rc",
"patch-rc": "npm version prepatch --preid=rc",
"rc": "npm version prerelease --preid=rc",
"test": "jest --coverage"
},
"peerDependencies": {
"@tanstack/react-query": "4.x",
"@zodios/core": ">=10.2.0 <11.0.0",
"react": ">=16.8.0"
},
"devDependencies": {
"@tanstack/react-query": "4.36.1",
"@testing-library/dom": "9.3.3",
"@testing-library/jest-dom": "6.1.4",
"@testing-library/react": "14.0.0",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.5.1",
"@types/axios": "0.14.0",
"@types/cors": "2.8.14",
"@types/express": "4.17.19",
"@types/jest": "29.5.5",
"@types/node": "20.8.9",
"@types/react": "18.2.30",
"@zodios/core": "10.9.6",
"axios": "1.5.1",
"cors": "2.8.5",
"express": "4.18.2",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-test-renderer": "18.2.0",
"rimraf": "5.0.5",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"tsup": "6.3.0",
"typescript": "5.2.2",
"zod": "3.22.4"
},
"resolutions": {
"@types/react": "18.2.30"
},
"dependencies": {}
}