react-tailwind-email-editor 0.0.7 → 0.0.9
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 +18 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-tailwind-email-editor",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"description": "A Rich Tailwind based email editor",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -21,12 +21,14 @@
|
|
|
21
21
|
],
|
|
22
22
|
"sideEffects": false,
|
|
23
23
|
"scripts": {
|
|
24
|
-
"build
|
|
25
|
-
"
|
|
26
|
-
"dev:js": "tsup --watch",
|
|
27
|
-
"dev": "npm run dev:js",
|
|
24
|
+
"build": "tsup",
|
|
25
|
+
"dev": "tsup --watch",
|
|
28
26
|
"typecheck": "tsc --noEmit"
|
|
29
27
|
},
|
|
28
|
+
"peerDependencies": {
|
|
29
|
+
"react": ">=18",
|
|
30
|
+
"react-dom": ">=18"
|
|
31
|
+
},
|
|
30
32
|
"dependencies": {
|
|
31
33
|
"@craftjs/core": "^0.2.12",
|
|
32
34
|
"@hookform/resolvers": "^3.10.0",
|
|
@@ -66,9 +68,7 @@
|
|
|
66
68
|
"input-otp": "^1.4.2",
|
|
67
69
|
"lucide-react": "^0.462.0",
|
|
68
70
|
"next-themes": "^0.3.0",
|
|
69
|
-
"react": "^18.3.1",
|
|
70
71
|
"react-day-picker": "^8.10.1",
|
|
71
|
-
"react-dom": "^18.3.1",
|
|
72
72
|
"react-hook-form": "^7.61.1",
|
|
73
73
|
"react-resizable-panels": "^2.1.9",
|
|
74
74
|
"react-router-dom": "^6.30.1",
|
|
@@ -102,8 +102,18 @@
|
|
|
102
102
|
"typescript": "^5.0.0",
|
|
103
103
|
"typescript-eslint": "^8.38.0",
|
|
104
104
|
"vite": "^5.4.19",
|
|
105
|
-
"vitest": "^3.2.4"
|
|
105
|
+
"vitest": "^3.2.4",
|
|
106
|
+
"react": "^18.3.1",
|
|
107
|
+
"react-dom": "^18.3.1"
|
|
106
108
|
},
|
|
109
|
+
"keywords": [
|
|
110
|
+
"react email editor",
|
|
111
|
+
"email builder",
|
|
112
|
+
"drag and drop email editor",
|
|
113
|
+
"react email builder",
|
|
114
|
+
"tailwind email editor",
|
|
115
|
+
"craftjs email builder"
|
|
116
|
+
],
|
|
107
117
|
"author": "hemanth-dev",
|
|
108
118
|
"license": "ISC"
|
|
109
119
|
}
|