-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
59 lines (59 loc) · 1.66 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
{
"name": "react-hook-form-persist",
"version": "3.0.0",
"description": "Persist and populate react-hook-form form using storage of your choice",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"files": [
"dist"
],
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"format": "pretty-quick --ignore-path .gitignore",
"build": "rm -rf dist && tsup src/index.tsx --format cjs,esm --dts --target node16",
"prepublishOnly": "npm run build",
"types:check": "tsc --noEmit",
"size": "dist-size"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tiaanduplessis/react-hook-form-persist.git"
},
"keywords": [
"react-hook-form",
"persist",
"storage",
"store",
"localstorage",
"sessionstorage"
],
"author": "Tiaan du Plessis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tiaanduplessis/react-hook-form-persist/issues"
},
"homepage": "https://github.com/tiaanduplessis/react-hook-form-persist#readme",
"devDependencies": {
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.2.0",
"@types/testing-library__jest-dom": "^5.14.3",
"dist-size": "^0.4.0",
"jsdom": "^19.0.0",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-hook-form": "7.31.1",
"tsup": "^5.12.7",
"typescript": "^4.6.4",
"vitest": "^0.12.6"
},
"peerDependencies": {
"react": ">= 16.3",
"react-hook-form": ">= 6"
}
}