-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·108 lines (108 loc) · 3.03 KB
/
package.json
File metadata and controls
executable file
·108 lines (108 loc) · 3.03 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@qazuor/react-form-toolkit",
"version": "0.1.3",
"homepage": "https://github.com/qazuor/reactFormToolkit",
"description": "A strongly-typed React form toolkit built on top of React Hook Form with Zod validation. This library provides a simple, flexible, and type-safe way to build forms in React applications.",
"keywords": [
"react",
"form",
"validation",
"typescript",
"zod"
],
"author": "Qazuor <qazuor@gmail.com> (https://github.com/qazuor/)",
"repository": {
"type": "git",
"url": "https://github.com/qazuor/react-form-toolkit"
},
"bugs": {
"url": "https://github.com/qazuor/reactFormToolkit/issues",
"email": "qazuor@gmail.com"
},
"private": false,
"workspaces": [
"docs"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./animations.css": "./dist/animations.css"
},
"files": [
"dist",
"README.md",
"animations.css"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "tsup",
"dev": "pnpm run build && pnpm run -r --parallel dev",
"watch": "tsup --watch",
"lint": "biome check ./src",
"test": "vitest",
"test:file": "vitest run",
"test:coverage": "vitest run --coverage",
"format": "biome format --write ./src",
"lint:fix": "biome check --apply ./src",
"prepublishOnly": "pnpm test && pnpm build",
"release:stable": "pnpm bump && git push --follow-tags",
"release:beta": "pnpm bump:beta && git push --follow-tags",
"bump": "pnpm version patch",
"bump:beta": "pnpm version prerelease --preid=beta",
"docs:dev": "pnpm run dev --filter docs",
"docs:build": "pnpm run build && cd docs && pnpm run build",
"docs:lint": "pnpm run lint docs",
"docs:format": "pnpm run format docs"
},
"peerDependencies": {
"i18next": "^23.7.16",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^14.0.0",
"zod": "^3.22.4"
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tooltip": "^1.1.8",
"@zodios/core": "^10.9.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"i18next-browser-languagedetector": "^7.1.0",
"marked": "^12.0.0",
"react-hook-form": "^7.51.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"zod-i18n-map": "^2.27.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.2.1",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20.10.0",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/coverage-v8": "^1.3.1",
"happy-dom": "^12.10.3",
"jsdom": "^24.0.0",
"postcss": "^8.4.35",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.1",
"tsup": "^8.0.2",
"typescript": "^5.5.3",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.7.0",
"vitest": "^1.3.1"
}
}