-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
75 lines (75 loc) · 1.88 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
{
"name": "antd-zod",
"version": "6.0.0",
"description": "Antd Zod validation",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "npm run build",
"build": "tsup --format cjs,esm && tsup --dts-only"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrBr/antd-zod.git"
},
"keywords": [
"antd",
"zod",
"react",
"validation"
],
"author": "Luka Bracanovic",
"license": "MIT",
"bugs": {
"url": "https://github.com/MrBr/antd-zod/issues"
},
"homepage": "https://github.com/MrBr/antd-zod#readme",
"devDependencies": {
"@storybook/addon-essentials": "^7.4.6",
"@storybook/addon-interactions": "^7.4.6",
"@storybook/addon-links": "^7.4.6",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.4.6",
"@storybook/react": "^7.4.6",
"@storybook/react-vite": "^7.4.6",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.5",
"@types/lodash.merge": "^4.6.8",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"antd": "^5.20.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.4.6",
"ts-jest": "^29.1.1",
"tsup": "^8.0.2",
"typescript": "^5.2.2",
"zod": "^3.23.8"
},
"peerDependencies": {
"antd": "^5.20.5",
"zod": ">=3.0.0"
},
"dependencies": {
"lodash.merge": "^4.6.2"
}
}