dragble-react-editor 1.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,135 @@
1
+ {
2
+ "name": "dragble-react-editor",
3
+ "version": "1.0.1",
4
+ "type": "module",
5
+ "description": "React email editor component AI powered drag-and-drop email builder for creating responsive email templates and newsletters. Build HTML emails visually with Dragble.",
6
+ "main": "dist/index.js",
7
+ "module": "dist/index.esm.js",
8
+ "types": "dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.esm.js",
12
+ "require": "./dist/index.js",
13
+ "types": "./dist/index.d.ts"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist",
18
+ "README.md",
19
+ "LICENSE"
20
+ ],
21
+ "scripts": {
22
+ "build": "rollup -c",
23
+ "build:watch": "rollup -c -w",
24
+ "dev": "rollup -c -w",
25
+ "test": "vitest",
26
+ "lint": "eslint src --ext .ts,.tsx",
27
+ "typecheck": "tsc --noEmit",
28
+ "clean": "rimraf dist",
29
+ "prepublishOnly": "npm run build",
30
+ "prepare": "husky"
31
+ },
32
+ "keywords": [
33
+ "dragble",
34
+ "email",
35
+ "email-editor",
36
+ "email-builder",
37
+ "email-template",
38
+ "email-template-builder",
39
+ "email-template-editor",
40
+ "email-designer",
41
+ "email-design",
42
+ "html-email",
43
+ "html-email-editor",
44
+ "html-email-builder",
45
+ "responsive-email",
46
+ "newsletter",
47
+ "newsletter-builder",
48
+ "newsletter-editor",
49
+ "newsletter-template",
50
+ "react",
51
+ "react-email",
52
+ "react-email-editor",
53
+ "react-email-builder",
54
+ "react-component",
55
+ "editor",
56
+ "template-editor",
57
+ "template-builder",
58
+ "drag-and-drop",
59
+ "drag-drop-editor",
60
+ "visual-editor",
61
+ "wysiwyg",
62
+ "wysiwyg-editor",
63
+ "page-builder",
64
+ "web-page-builder",
65
+ "landing-page-builder",
66
+ "no-code",
67
+ "low-code",
68
+ "design-tool",
69
+ "email-marketing",
70
+ "email-campaign",
71
+ "transactional-email",
72
+ "mailchimp",
73
+ "sendgrid",
74
+ "mjml",
75
+ "embed",
76
+ "embeddable",
77
+ "sdk",
78
+ "content-builder",
79
+ "email-automation"
80
+ ],
81
+ "author": "Dragble",
82
+ "license": "MIT",
83
+ "publishConfig": {
84
+ "access": "public"
85
+ },
86
+ "repository": {
87
+ "type": "git",
88
+ "url": "https://github.com/Dragble/dragble-react-editor.git"
89
+ },
90
+ "bugs": {
91
+ "url": "https://github.com/Dragble/dragble-react-editor/issues"
92
+ },
93
+ "homepage": "https://docs.dragble.com",
94
+ "dependencies": {
95
+ "dragble-types": "latest"
96
+ },
97
+ "peerDependencies": {
98
+ "react": ">=17.0.0",
99
+ "react-dom": ">=17.0.0"
100
+ },
101
+ "peerDependenciesMeta": {
102
+ "react": {
103
+ "optional": false
104
+ },
105
+ "react-dom": {
106
+ "optional": false
107
+ }
108
+ },
109
+ "devDependencies": {
110
+ "@commitlint/cli": "^20.5.0",
111
+ "@commitlint/config-conventional": "^20.5.0",
112
+ "@rollup/plugin-commonjs": "^25.0.7",
113
+ "@rollup/plugin-node-resolve": "^15.2.3",
114
+ "@rollup/plugin-typescript": "^11.1.5",
115
+ "@types/node": "^20.10.4",
116
+ "@types/react": "^18.2.43",
117
+ "@types/react-dom": "^18.2.17",
118
+ "@typescript-eslint/eslint-plugin": "^6.13.2",
119
+ "@typescript-eslint/parser": "^6.13.2",
120
+ "eslint": "^8.55.0",
121
+ "husky": "^9.1.7",
122
+ "react": "^18.2.0",
123
+ "react-dom": "^18.2.0",
124
+ "rimraf": "^5.0.5",
125
+ "rollup": "^4.9.0",
126
+ "rollup-plugin-dts": "^6.1.0",
127
+ "rollup-plugin-peer-deps-external": "^2.2.4",
128
+ "tslib": "^2.8.1",
129
+ "typescript": "^5.3.3",
130
+ "vitest": "^1.0.4"
131
+ },
132
+ "engines": {
133
+ "node": ">=16.0.0"
134
+ }
135
+ }