monto-email-builder 1.0.0 → 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/README.md +2 -1
- package/package.json +19 -25
package/README.md
CHANGED
|
@@ -31,7 +31,8 @@ npm install @usewaypoint/block-avatar @usewaypoint/block-button \
|
|
|
31
31
|
@usewaypoint/block-spacer @usewaypoint/block-text \
|
|
32
32
|
@usewaypoint/document-core @usewaypoint/email-builder
|
|
33
33
|
|
|
34
|
-
#
|
|
34
|
+
# 可选依赖(用于代码高亮功能,HTML/JSON 输出预览)
|
|
35
|
+
# 如果使用代码高亮功能,必须安装 prettier 及其插件
|
|
35
36
|
npm install highlight.js prettier
|
|
36
37
|
```
|
|
37
38
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "monto-email-builder",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "A powerful and customizable email template builder React component library with visual editing, internationalization, and image upload support",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"email",
|
|
@@ -44,12 +44,25 @@
|
|
|
44
44
|
"@mui/icons-material": "^5.15.0",
|
|
45
45
|
"@mui/material": "^5.15.0",
|
|
46
46
|
"react": "^18.0.0",
|
|
47
|
-
"react-dom": "^18.0.0"
|
|
47
|
+
"react-dom": "^18.0.0",
|
|
48
|
+
"zod": "^3.22.4",
|
|
49
|
+
"zustand": "^4.5.1",
|
|
50
|
+
"@usewaypoint/block-avatar": "^0.0.3",
|
|
51
|
+
"@usewaypoint/block-button": "^0.0.3",
|
|
52
|
+
"@usewaypoint/block-columns-container": "^0.0.3",
|
|
53
|
+
"@usewaypoint/block-container": "^0.0.2",
|
|
54
|
+
"@usewaypoint/block-divider": "^0.0.4",
|
|
55
|
+
"@usewaypoint/block-heading": "^0.0.3",
|
|
56
|
+
"@usewaypoint/block-html": "^0.0.3",
|
|
57
|
+
"@usewaypoint/block-image": "^0.0.5",
|
|
58
|
+
"@usewaypoint/block-spacer": "^0.0.3",
|
|
59
|
+
"@usewaypoint/block-text": "^0.0.6",
|
|
60
|
+
"@usewaypoint/document-core": "^0.0.6",
|
|
61
|
+
"@usewaypoint/email-builder": "^0.0.8",
|
|
62
|
+
"prettier": "^3.2.0",
|
|
63
|
+
"react-colorful": "^5.6.1"
|
|
48
64
|
},
|
|
49
65
|
"peerDependenciesMeta": {
|
|
50
|
-
"highlight.js": {
|
|
51
|
-
"optional": true
|
|
52
|
-
},
|
|
53
66
|
"prettier": {
|
|
54
67
|
"optional": true
|
|
55
68
|
}
|
|
@@ -69,34 +82,15 @@
|
|
|
69
82
|
"@types/react-dom": "^18.2.19",
|
|
70
83
|
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
71
84
|
"@typescript-eslint/parser": "^6.21.0",
|
|
72
|
-
"@usewaypoint/block-avatar": "^0.0.3",
|
|
73
|
-
"@usewaypoint/block-button": "^0.0.3",
|
|
74
|
-
"@usewaypoint/block-columns-container": "^0.0.3",
|
|
75
|
-
"@usewaypoint/block-container": "^0.0.2",
|
|
76
|
-
"@usewaypoint/block-divider": "^0.0.4",
|
|
77
|
-
"@usewaypoint/block-heading": "^0.0.3",
|
|
78
|
-
"@usewaypoint/block-html": "^0.0.3",
|
|
79
|
-
"@usewaypoint/block-image": "^0.0.5",
|
|
80
|
-
"@usewaypoint/block-spacer": "^0.0.3",
|
|
81
|
-
"@usewaypoint/block-text": "^0.0.6",
|
|
82
|
-
"@usewaypoint/document-core": "^0.0.6",
|
|
83
|
-
"@usewaypoint/email-builder": "^0.0.8",
|
|
84
85
|
"@vitejs/plugin-react-swc": "^3.5.0",
|
|
85
86
|
"eslint": "^8.56.0",
|
|
86
87
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
87
88
|
"eslint-plugin-react-refresh": "^0.4.5",
|
|
88
89
|
"eslint-plugin-simple-import-sort": "^12.0.0",
|
|
89
|
-
"highlight.js": "^11.9.0",
|
|
90
90
|
"prettier": "^3.2.5",
|
|
91
91
|
"react": "^18.2.0",
|
|
92
|
-
"react-colorful": "^5.6.1",
|
|
93
92
|
"react-dom": "^18.2.0",
|
|
94
93
|
"typescript": "^5.2.2",
|
|
95
|
-
"vite": "^5.1.0"
|
|
96
|
-
"zod": "^3.22.4",
|
|
97
|
-
"zustand": "^4.5.1"
|
|
98
|
-
},
|
|
99
|
-
"dependencies": {
|
|
100
|
-
"monto-email-builder": "file:monto-email-builder-1.0.0.tgz"
|
|
94
|
+
"vite": "^5.1.0"
|
|
101
95
|
}
|
|
102
96
|
}
|