@ainelo/form-engine 1.0.3
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/dist/index.d.mts +453 -0
- package/dist/index.d.ts +453 -0
- package/dist/index.js +42 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +42 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +94 -0
package/package.json
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ainelo/form-engine",
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"description": "React form generation library — conditional display, multi-step pagination, OTP, file upload, repeat groups",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "TOTON Lionel",
|
|
7
|
+
"email": "totonlionel@gmail.com"
|
|
8
|
+
},
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/AInelo/forme-engine.git"
|
|
13
|
+
},
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/AInelo/forme-engine/issues"
|
|
16
|
+
},
|
|
17
|
+
"homepage": "https://github.com/AInelo/forme-engine",
|
|
18
|
+
"publishConfig": {
|
|
19
|
+
"access": "public"
|
|
20
|
+
},
|
|
21
|
+
"main": "./dist/index.js",
|
|
22
|
+
"module": "./dist/index.mjs",
|
|
23
|
+
"types": "./dist/index.d.ts",
|
|
24
|
+
"exports": {
|
|
25
|
+
".": {
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
|
+
"import": "./dist/index.mjs",
|
|
28
|
+
"require": "./dist/index.js"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"dist"
|
|
33
|
+
],
|
|
34
|
+
"scripts": {
|
|
35
|
+
"build": "tsup",
|
|
36
|
+
"dev": "tsup --watch",
|
|
37
|
+
"typecheck": "tsc --noEmit"
|
|
38
|
+
},
|
|
39
|
+
"peerDependencies": {
|
|
40
|
+
"@tiptap/extension-image": ">=2.0.0",
|
|
41
|
+
"@tiptap/extension-link": ">=2.0.0",
|
|
42
|
+
"@tiptap/extension-placeholder": ">=2.0.0",
|
|
43
|
+
"@tiptap/react": ">=2.0.0",
|
|
44
|
+
"@tiptap/starter-kit": ">=2.0.0",
|
|
45
|
+
"lucide-react": ">=0.300.0",
|
|
46
|
+
"react": ">=18.0.0",
|
|
47
|
+
"react-dom": ">=18.0.0",
|
|
48
|
+
"react-hook-form": ">=7.0.0",
|
|
49
|
+
"react-hot-toast": ">=2.0.0",
|
|
50
|
+
"zod": ">=3.0.0",
|
|
51
|
+
"zustand": ">=4.0.0"
|
|
52
|
+
},
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"@hookform/resolvers": "^3.0.0",
|
|
55
|
+
"@radix-ui/react-checkbox": "^1.3.3",
|
|
56
|
+
"@radix-ui/react-label": "^2.1.8",
|
|
57
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
58
|
+
"@radix-ui/react-radio-group": "^1.3.8",
|
|
59
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
60
|
+
"@radix-ui/react-switch": "^1.2.6",
|
|
61
|
+
"class-variance-authority": "^0.7.1",
|
|
62
|
+
"classnames": "^2.3.0",
|
|
63
|
+
"clsx": "^2.1.1",
|
|
64
|
+
"tailwind-merge": "^3.6.0"
|
|
65
|
+
},
|
|
66
|
+
"devDependencies": {
|
|
67
|
+
"@tiptap/extension-image": "^2.0.0",
|
|
68
|
+
"@tiptap/extension-link": "^2.0.0",
|
|
69
|
+
"@tiptap/extension-placeholder": "^2.0.0",
|
|
70
|
+
"@tiptap/react": "^2.0.0",
|
|
71
|
+
"@tiptap/starter-kit": "^2.0.0",
|
|
72
|
+
"@types/react": "^18.0.0",
|
|
73
|
+
"@types/react-dom": "^18.0.0",
|
|
74
|
+
"lucide-react": "^0.300.0",
|
|
75
|
+
"react": "^18.0.0",
|
|
76
|
+
"react-dom": "^18.0.0",
|
|
77
|
+
"react-hook-form": "^7.0.0",
|
|
78
|
+
"react-hot-toast": "^2.0.0",
|
|
79
|
+
"tsup": "^8.0.0",
|
|
80
|
+
"typescript": "^5.0.0",
|
|
81
|
+
"zod": "^3.0.0",
|
|
82
|
+
"zustand": "^4.0.0"
|
|
83
|
+
},
|
|
84
|
+
"keywords": [
|
|
85
|
+
"react",
|
|
86
|
+
"form",
|
|
87
|
+
"form-builder",
|
|
88
|
+
"form-generator",
|
|
89
|
+
"form-engine",
|
|
90
|
+
"typescript",
|
|
91
|
+
"zod",
|
|
92
|
+
"react-hook-form"
|
|
93
|
+
]
|
|
94
|
+
}
|