rhf-dynamic-forms 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,82 @@
1
+ {
2
+ "name": "rhf-dynamic-forms",
3
+ "version": "1.1.0",
4
+ "description": "Configuration-driven form generation library for React",
5
+ "author": "Oleh Krachun",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/olegkrachun/dynamic-forms.git"
10
+ },
11
+ "homepage": "https://github.com/olegkrachun/dynamic-forms#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/olegkrachun/dynamic-forms/issues"
14
+ },
15
+ "type": "module",
16
+ "main": "./dist/index.cjs",
17
+ "module": "./dist/index.mjs",
18
+ "types": "./dist/index.d.mts",
19
+ "exports": {
20
+ ".": {
21
+ "types": "./dist/index.d.mts",
22
+ "import": "./dist/index.mjs",
23
+ "require": "./dist/index.cjs"
24
+ }
25
+ },
26
+ "files": [
27
+ "dist"
28
+ ],
29
+ "publishConfig": {
30
+ "access": "public",
31
+ "registry": "https://registry.npmjs.org/"
32
+ },
33
+ "keywords": [
34
+ "react",
35
+ "form",
36
+ "dynamic",
37
+ "configuration",
38
+ "json",
39
+ "zod",
40
+ "react-hook-form"
41
+ ],
42
+ "peerDependencies": {
43
+ "react": "^19.2.3",
44
+ "react-dom": "^19.2.3"
45
+ },
46
+ "dependencies": {
47
+ "@hookform/resolvers": "^5.2.2",
48
+ "json-logic-js": "^2.0.5",
49
+ "react-hook-form": "^7.71.1",
50
+ "zod": "^4.3.5"
51
+ },
52
+ "devDependencies": {
53
+ "@biomejs/biome": "2.3.11",
54
+ "@testing-library/jest-dom": "^6.6.3",
55
+ "@testing-library/react": "^16.1.0",
56
+ "@testing-library/user-event": "^14.5.2",
57
+ "@types/json-logic-js": "^2.0.8",
58
+ "@types/react": "^19.2.3",
59
+ "@types/react-dom": "^19.2.3",
60
+ "@vitejs/plugin-react": "^5.1.2",
61
+ "@vitest/coverage-v8": "^4.0.17",
62
+ "jsdom": "^27.4.0",
63
+ "react": "^19.2.3",
64
+ "react-dom": "^19.2.3",
65
+ "tsdown": "0.20.0-beta.3",
66
+ "typescript": "^5.9.3",
67
+ "ultracite": "7.0.11",
68
+ "vite": "^7.3.1",
69
+ "vitest": "^4.0.17"
70
+ },
71
+ "scripts": {
72
+ "dev": "vite",
73
+ "build": "tsdown",
74
+ "preview": "vite preview",
75
+ "test": "vitest run",
76
+ "test:watch": "vitest",
77
+ "test:coverage": "vitest run --coverage",
78
+ "typecheck": "tsc --noEmit",
79
+ "lint": "ultracite check",
80
+ "lint:fix": "ultracite fix"
81
+ }
82
+ }