-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.14 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.14 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
{
"name": "@devup-api/hookform",
"version": "0.1.2",
"license": "Apache-2.0",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"test": "bun test",
"test:coverage": "bun test --coverage"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@devup-api/fetch": "workspace:^",
"@devup-api/zod": "workspace:^",
"@hookform/resolvers": ">=5.2.2",
"react-hook-form": ">=7.72.1"
},
"peerDependencies": {
"@tanstack/react-query": ">=5.0.0",
"react": "*",
"react-hook-form": "*",
"zod": "*"
},
"devDependencies": {
"@tanstack/react-query": "^5.96",
"@testing-library/react": "^16.3",
"@types/node": "^25.5",
"@types/react": "^19.2",
"bun-test-env-dom": "^1.0",
"happy-dom": "^20.8",
"react": "^19.2",
"react-dom": "^19.2",
"typescript": "^6.0",
"zod": "^4.3",
"rollup-plugin-preserve-directives": "^0.4",
"vite": "^8.0",
"vite-plugin-dts": "^4.5"
}
}