-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.42 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
{
"name": "formik-error-focus",
"version": "2.0.0",
"description": "Scroll to the first error in your Formik form and set focus",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "rm -rf dist && tsup src/index.tsx --format cjs,esm --dts",
"prepublishOnly": "npm run build",
"types:check": "tsc --noEmit",
"format": "pretty-quick --ignore-path .gitignore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tiaanduplessis/formik-error-focus.git"
},
"files": [
"dist"
],
"keywords": [
"formik",
"errors",
"scroll",
"scroll-to",
"focus"
],
"author": "Tiaan du Plessis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tiaanduplessis/formik-error-focus/issues"
},
"homepage": "https://github.com/tiaanduplessis/formik-error-focus#readme",
"devDependencies": {
"@types/flat": "^5.0.2",
"@types/react": "^18.0.9",
"@types/scroll-to-element": "^2.0.2",
"formik": "^2.2.9",
"jsdom": "^19.0.0",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"react": "^18.1.0",
"tsup": "^5.12.8",
"typescript": "^4.6.4"
},
"peerDependencies": {
"formik": ">= 1",
"react": ">= 16.3"
},
"dependencies": {
"flat": "^5.0.2",
"scroll-to-element": "^2.0.3"
}
}