react-tailwind-email-editor 0.0.1

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,108 @@
1
+ {
2
+ "name": "react-tailwind-email-editor",
3
+ "version": "0.0.1",
4
+ "description": "A Rich Talwind based email editor",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.mjs",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.mjs",
13
+ "require": "./dist/index.js"
14
+ },
15
+ "./package.json": "./package.json"
16
+ },
17
+ "files": [
18
+ "dist",
19
+ "README.md"
20
+ ],
21
+ "sideEffects": false,
22
+ "scripts": {
23
+ "build:js": "tsup",
24
+ "build": "npm run build:js",
25
+ "dev:js": "tsup --watch",
26
+ "dev": "npm run dev:js",
27
+ "typecheck": "tsc --noEmit"
28
+ },
29
+ "dependencies": {
30
+ "@craftjs/core": "^0.2.12",
31
+ "@hookform/resolvers": "^3.10.0",
32
+ "@radix-ui/react-accordion": "^1.2.12",
33
+ "@radix-ui/react-alert-dialog": "^1.1.14",
34
+ "@radix-ui/react-aspect-ratio": "^1.1.7",
35
+ "@radix-ui/react-avatar": "^1.1.10",
36
+ "@radix-ui/react-checkbox": "^1.3.2",
37
+ "@radix-ui/react-collapsible": "^1.1.11",
38
+ "@radix-ui/react-context-menu": "^2.2.15",
39
+ "@radix-ui/react-dialog": "^1.1.15",
40
+ "@radix-ui/react-dropdown-menu": "^2.1.15",
41
+ "@radix-ui/react-hover-card": "^1.1.14",
42
+ "@radix-ui/react-label": "^2.1.7",
43
+ "@radix-ui/react-menubar": "^1.1.15",
44
+ "@radix-ui/react-navigation-menu": "^1.2.13",
45
+ "@radix-ui/react-popover": "^1.1.14",
46
+ "@radix-ui/react-progress": "^1.1.7",
47
+ "@radix-ui/react-radio-group": "^1.3.7",
48
+ "@radix-ui/react-scroll-area": "^1.2.9",
49
+ "@radix-ui/react-select": "^2.2.5",
50
+ "@radix-ui/react-separator": "^1.1.7",
51
+ "@radix-ui/react-slider": "^1.3.5",
52
+ "@radix-ui/react-slot": "^1.2.3",
53
+ "@radix-ui/react-switch": "^1.2.5",
54
+ "@radix-ui/react-tabs": "^1.1.12",
55
+ "@radix-ui/react-toast": "^1.2.14",
56
+ "@radix-ui/react-toggle": "^1.1.9",
57
+ "@radix-ui/react-toggle-group": "^1.1.10",
58
+ "@radix-ui/react-tooltip": "^1.2.7",
59
+ "@tanstack/react-query": "^5.83.0",
60
+ "class-variance-authority": "^0.7.1",
61
+ "clsx": "^2.1.1",
62
+ "cmdk": "^1.1.1",
63
+ "date-fns": "^3.6.0",
64
+ "embla-carousel-react": "^8.6.0",
65
+ "input-otp": "^1.4.2",
66
+ "lucide-react": "^0.462.0",
67
+ "next-themes": "^0.3.0",
68
+ "react": "^18.3.1",
69
+ "react-day-picker": "^8.10.1",
70
+ "react-dom": "^18.3.1",
71
+ "react-hook-form": "^7.61.1",
72
+ "react-resizable-panels": "^2.1.9",
73
+ "react-router-dom": "^6.30.1",
74
+ "recharts": "^2.15.4",
75
+ "sonner": "^1.7.4",
76
+ "tailwind-merge": "^2.6.0",
77
+ "tailwindcss-animate": "^1.0.7",
78
+ "vaul": "^0.9.9",
79
+ "zod": "^3.25.76"
80
+ },
81
+ "devDependencies": {
82
+ "@eslint/js": "^9.32.0",
83
+ "@tailwindcss/typography": "^0.5.16",
84
+ "@testing-library/jest-dom": "^6.6.0",
85
+ "@testing-library/react": "^16.0.0",
86
+ "@types/node": "^22.16.5",
87
+ "@types/react": "^18.3.23",
88
+ "@types/react-dom": "^18.3.7",
89
+ "@vitejs/plugin-react-swc": "^3.11.0",
90
+ "autoprefixer": "^10.4.23",
91
+ "esbuild-sass-plugin": "^3.6.0",
92
+ "eslint": "^9.32.0",
93
+ "eslint-plugin-react-hooks": "^5.2.0",
94
+ "eslint-plugin-react-refresh": "^0.4.20",
95
+ "globals": "^15.15.0",
96
+ "jsdom": "^20.0.3",
97
+ "postcss": "^8.5.6",
98
+ "sass": "^1.97.3",
99
+ "tailwindcss": "^4.1.18",
100
+ "tsup": "^8.0.0",
101
+ "typescript": "^5.0.0",
102
+ "typescript-eslint": "^8.38.0",
103
+ "vite": "^5.4.19",
104
+ "vitest": "^3.2.4"
105
+ },
106
+ "author": "hemanth-dev",
107
+ "license": "ISC"
108
+ }