-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
64 lines (64 loc) · 1.57 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
{
"name": "remix-hook-form",
"version": "1.0.5",
"description": "Utility wrapper around react-hook-form for use with Remix.run",
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"typings": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "vite build",
"build": "vite build",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Code-Forge-Net/remix-hook-form.git"
},
"keywords": [
"React",
"Remix",
"Remix.run",
"react-hook-form",
"hooks",
"forms"
],
"author": "Alem Tuzlak",
"license": "MIT",
"bugs": {
"url": "https://github.com/Code-Forge-Net/remix-hook-form/issues"
},
"homepage": "https://github.com/Code-Forge-Net/remix-hook-form#readme",
"peerDependencies": {
"@remix-run/react": "^1.15.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9"
},
"readme": "https://github.com/Code-Forge-Net/remix-hook-form#readme",
"devDependencies": {
"@hookform/resolvers": "^3.0.1",
"@remix-run/react": "^1.15.0",
"@testing-library/react": "^14.0.0",
"@types/node": "^18.15.11",
"@types/react": "^18.0.34",
"happy-dom": "^9.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"rollup": "^3.20.2",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^5.0.4",
"vite": "^4.2.1",
"vitest": "^0.30.1"
}
}