-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.38 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@siamf/email-builder",
"version": "1.0.0",
"description": "A React drag-and-drop email builder that lets users visually design responsive emails and export HTML + JSON. Includes uploads, branding, and theming for easy integration into any app.",
"homepage": "https://react-dnd-builder.vercel.app/",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "eslint . --max-warnings 0",
"check-types": "tsc --noEmit",
"build": "tsup",
"dev": "tsup --watch"
},
"author": {
"name": "Siam Ahnaf",
"email": "mail@siamahnaf.com",
"url": "https://www.siamahnaf.com"
},
"keywords": [
"drag-and-drop",
"email-builder",
"template-editor",
"responsive-emails",
"email-templates",
"visual-editor",
"react-email-editor",
"react-email-creator",
"react-email-drag",
"react-email-builder"
],
"repository": {
"type": "git",
"directory": "https://github.com/siamahnaf/react-email-editor",
"url": "https://github.com/siamahnaf/react-email-editor"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"react": "19.2.3",
"react-dom": "19.2.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
}
}