This repository has been archived by the owner on Feb 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.54 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
{
"name": "jotai-zod-form",
"description": "Type-safe React form library using Jotai & Zod",
"author": {
"email": "me@dbrands.dev",
"name": "David Brands"
},
"repository": {
"type": "git",
"url": "https://github.com/dbrxnds/jotai-zod-form"
},
"bugs": {
"url": "https://github.com/dbrxnds/jotai-zod-form/issues"
},
"keywords": [
"react",
"jotai",
"zod",
"form",
"typescript"
],
"version": "0.0.10",
"type": "module",
"main": "./dist/jotai-zod-form.umd.cjs",
"module": "./dist/jotai-zod-form.js",
"types": "./dist/jotai-zod-form.d.ts",
"exports": {
".": {
"import": "./dist/jotai-zod-form.js",
"require": "./dist/jotai-zod-form.umd.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "tsc",
"test": "vitest"
},
"dependencies": {
"dot-path-value": "0.0.5",
"fast-deep-equal": "3.1.3",
"jotai-optics": "0.3.0",
"optics-ts": "2.4.0"
},
"peerDependencies": {
"jotai": "^2.0.0",
"react": "^16.8.0",
"zod": "^3.00.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@types/lodash.set": "^4.3.7",
"@types/node": "^18.11.19",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react-swc": "^3.0.0",
"jotai": "^2.0.0",
"prettier": "^2.8.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "^4.9.3",
"vite": "^4.1.0",
"vite-plugin-dts": "^1.7.2",
"vitest": "^0.28.4",
"zod": "^3.00.0"
}
}