@aatulwork/customform-renderer 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/package.json ADDED
@@ -0,0 +1,66 @@
1
+ {
2
+ "name": "@aatulwork/customform-renderer",
3
+ "version": "1.0.0",
4
+ "description": "A powerful, reusable form renderer component for React with Material-UI support",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.esm.js",
7
+ "types": "dist/index.d.ts",
8
+ "files": [
9
+ "dist",
10
+ "lib",
11
+ "README.md"
12
+ ],
13
+ "scripts": {
14
+ "build": "tsup",
15
+ "build:watch": "tsup --watch",
16
+ "build:clean": "rm -rf dist && npm run build",
17
+ "dev": "tsup --watch",
18
+ "prepublishOnly": "npm run build",
19
+ "prebuild": "npm run lint:check",
20
+ "lint:check": "tsc --noEmit",
21
+ "version:patch": "npm version patch --no-git-tag-version",
22
+ "version:minor": "npm version minor --no-git-tag-version",
23
+ "version:major": "npm version major --no-git-tag-version",
24
+ "publish:patch": "npm run version:patch && npm run build && npm publish",
25
+ "publish:minor": "npm run version:minor && npm run build && npm publish",
26
+ "publish:major": "npm run version:major && npm run build && npm publish",
27
+ "publish:beta": "npm run build && npm publish --tag beta",
28
+ "publish:next": "npm run build && npm publish --tag next",
29
+ "publish:public": "npm run build && npm publish --access public",
30
+ "publish:dry-run": "npm run build && npm publish --dry-run",
31
+ "prepublish": "npm run build",
32
+ "postpublish": "echo 'Package published successfully!'"
33
+ },
34
+ "keywords": [
35
+ "react",
36
+ "form",
37
+ "form-renderer",
38
+ "material-ui",
39
+ "react-hook-form",
40
+ "dynamic-forms",
41
+ "form-builder"
42
+ ],
43
+ "author": "aatulwork",
44
+ "license": "MIT",
45
+ "peerDependencies": {
46
+ "react": "^18.0.0",
47
+ "react-dom": "^18.0.0",
48
+ "@mui/material": "^6.0.0",
49
+ "@mui/icons-material": "^6.0.0",
50
+ "@mui/x-date-pickers": "^7.0.0",
51
+ "react-hook-form": "^7.0.0",
52
+ "@tanstack/react-query": "^5.0.0",
53
+ "dayjs": "^1.11.0",
54
+ "@ckeditor/ckeditor5-react": "^11.0.0"
55
+ },
56
+ "dependencies": {
57
+ "@emotion/react": "^11.14.0",
58
+ "@emotion/styled": "^11.14.1"
59
+ },
60
+ "devDependencies": {
61
+ "@types/react": "^18.2.0",
62
+ "@types/react-dom": "^18.2.0",
63
+ "typescript": "^5.2.0",
64
+ "tsup": "^8.0.0"
65
+ }
66
+ }