-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.52 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
85
86
87
88
89
90
{
"name": "@jcoreio/zod-forms",
"description": "React form library based upon zod schemas",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/jcoreio/zod-forms.git"
},
"homepage": "https://github.com/jcoreio/zod-forms",
"bugs": {
"url": "https://github.com/jcoreio/zod-forms/issues"
},
"author": "Andy Edwards",
"license": "MIT",
"keywords": [
"zod",
"react",
"forms"
],
"devDependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@jcoreio/eslint-plugin-implicit-dependencies": "^1.1.1",
"@jcoreio/toolchain": "4.6.1",
"@jcoreio/toolchain-circle": "^4.6.1",
"@jcoreio/toolchain-esnext": "^4.6.1",
"@jcoreio/toolchain-mocha": "^4.6.1",
"@jcoreio/toolchain-react": "^4.6.1",
"@jcoreio/toolchain-semantic-release": "^4.6.1",
"@jcoreio/toolchain-typescript": "^4.6.1",
"@mui/icons-material": "^5.16.1",
"@mui/material": "^5.16.0",
"@rsbuild/core": "1.0.0-alpha.7",
"@rsbuild/plugin-react": "1.0.0-alpha.7",
"@testing-library/react": "^16.0.0",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/react": "^18.3.3",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"chai": "^4.3.7",
"eslint": "^8.56.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-react": "^7.32.2",
"global-jsdom": "^9.0.1",
"jsdom": "^22.1.0",
"mocha": "^10.2.0",
"react": "^18.0.0",
"react-dom": "^18.3.1",
"sinon": "^17.0.1",
"typescript": "^5.1.0"
},
"peerDependencies": {
"react": "^18.0.0"
},
"version": "0.0.0-development",
"sideEffects": false,
"scripts": {
"tc": "toolchain",
"toolchain": "toolchain",
"dev": "rsbuild dev --open",
"test": "toolchain test",
"prepublishOnly": "echo This package is meant to be published by semantic-release from the dist build directory. && exit 1"
},
"engines": {
"node": ">=16"
},
"packageManager": "[email protected]",
"dependencies": {
"@babel/runtime": "^7.18.6",
"fast-deep-equal": "^3.1.3",
"react-redux": "^9.1.2",
"redux": "^5.0.1",
"reselect": "^5.1.1",
"shallow-equal": "^3.1.0",
"zod": "^3.23.8",
"zod-invertible": "^1.1.0"
}
}