forked from tiaanduplessis/react-hook-form-persist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.32 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
84
{
"name": "react-hook-form-persistant",
"version": "1.0.2",
"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",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"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/kyzegs/react-hook-form-persistant.git"
},
"keywords": [
"react-hook-form",
"persist",
"storage",
"store",
"localstorage",
"sessionstorage"
],
"author": "Sebastiaan \"Kyzegs\" Zegers <[email protected]>",
"contributors": [
{
"name": "Tiaan du Plessis",
"email": "[email protected]",
"url": "https://github.com/tiaanduplessis"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kyzegs/react-hook-form-persistant/issues"
},
"homepage": "https://github.com/kyzegs/react-hook-form-persistant#readme",
"devDependencies": {
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/flat": "^5.0.2",
"@types/lodash": "^4.14.197",
"@types/react": "^18.1.0",
"@types/testing-library__jest-dom": "^5.14.3",
"@typescript-eslint/eslint-plugin": ">=6.0.0",
"@typescript-eslint/parser": ">=6.0.0",
"@vitest/coverage-v8": "^0.34.1",
"dist-size": "^0.4.0",
"eslint": ">=8.0.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^1.0.1",
"eslint-plugin-react": "^7.33.1",
"flat": "^5.0.2",
"jsdom": "^22.1.0",
"lodash": "^4.17.21",
"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.9.5",
"vitest": "^0.34.1"
},
"peerDependencies": {
"react": ">= 16.3",
"react-hook-form": ">= 6"
}
}