@n8x/react-form-utils 1.0.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/README.md +1238 -0
- package/dist/index.d.ts +84 -0
- package/dist/index.js +11 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +11 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +42 -0
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@n8x/react-form-utils",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"main": "dist/index.js",
|
|
5
|
+
"module": "dist/index.mjs",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"files": ["dist"],
|
|
8
|
+
"publishConfig": {
|
|
9
|
+
"access": "public"
|
|
10
|
+
},
|
|
11
|
+
"scripts": {
|
|
12
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
13
|
+
"rollup": "rollup -c --bundleConfigAsCjs",
|
|
14
|
+
"build": "npm run rollup"
|
|
15
|
+
},
|
|
16
|
+
"keywords": ["react", "forms", "validation", "zod", "react-hook-form", "form generation", "form utils", "react query", "react-form-library", "n8xform", "n8x", "n8x-form-utils"],
|
|
17
|
+
"author": "Syed Shayan Ali",
|
|
18
|
+
"license": "ISC",
|
|
19
|
+
"type": "commonjs",
|
|
20
|
+
"description": "Reuseable form utils for instant JS object to form generation with zod validation, controlled form submission events and state management using react-hook-form",
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"@rollup/plugin-commonjs": "^29.0.2",
|
|
23
|
+
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
24
|
+
"@rollup/plugin-terser": "^1.0.0",
|
|
25
|
+
"@rollup/plugin-typescript": "^12.3.0",
|
|
26
|
+
"@types/react": "^19.2.14",
|
|
27
|
+
"react": "^19.2.4",
|
|
28
|
+
"rollup-plugin-dts": "^6.4.1",
|
|
29
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
30
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
31
|
+
"tslib": "^2.8.1",
|
|
32
|
+
"typescript": "^6.0.2"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@hookform/resolvers": "^5.2.2",
|
|
36
|
+
"axios": "^1.14.0",
|
|
37
|
+
"react-hook-form": "^7.72.0",
|
|
38
|
+
"rollup": "^4.60.0",
|
|
39
|
+
"tailwindcss": "^4.2.2",
|
|
40
|
+
"zod": "^4.3.6"
|
|
41
|
+
}
|
|
42
|
+
}
|