-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
56 lines (56 loc) · 1.31 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": "react-controlled-form",
"description": "React Forms with Zod Validation",
"version": "5.0.2",
"main": "lib/index.js",
"module": "es/index.js",
"typings": "types/index.d.ts",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"files": [
"LICENSE",
"README.md",
"index.d.ts",
"lib/**",
"es/**",
"types/**"
],
"browserslist": [
"IE >= 11",
"Firefox >= 60",
"Safari >= 11.1",
"Chrome >= 66",
"ChromeAndroid >= 66",
"iOS >= 11.3",
"Edge >= 15"
],
"scripts": {
"clean": "rimraf lib es types",
"build": "tsc -b ./tsconfig.esm.json ./tsconfig.cjs.json ./tsconfig.types.json",
"dev": "pnpm build -w",
"release": "pnpm clean && pnpm build && npm publish"
},
"peerDependencies": {
"react": ">=16.8",
"zod": ">=3"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.2",
"@babel/node": "^7.13.0",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@types/react": "^18.3.3",
"babel-core": "7.0.0-bridge.0",
"cross-env": "^6.0.3",
"prettier": "^3.3.0",
"react": "^18.3.1",
"rimraf": "^3.0.0",
"typescript": "^5.4.5",
"zod": "^3.23.8"
}
}