-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 834 Bytes
/
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
{
"name": "formik-validator-zod",
"version": "2.0.1",
"description": "Helper to simplify validating Formik values with Zod",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "husky install",
"build": "tsc",
"test": "vitest"
},
"keywords": [
"zod",
"formik",
"forms",
"schema",
"validation"
],
"author": "Luke Glazebrook <Glazy@users.noreply.github.com>",
"repository": {
"type": "git",
"url": "https://github.com/glazy/formik-validator-zod.git"
},
"license": "MIT",
"devDependencies": {
"formik": "^2.2.9",
"husky": "^8.0.0",
"pretty-quick": "^3.1.3",
"typescript": "^4.8.4",
"vitest": "^0.24.3",
"zod": "^3.19.1"
},
"peerDependencies": {
"formik": "^2.2.9",
"zod": "^3.19.1"
}
}