-
Notifications
You must be signed in to change notification settings - Fork 790
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.89 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "react-email-editor",
"version": "2.0.0",
"description": "Unlayer's Email Editor Component for React.js",
"type": "commonjs",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"start": "tsup --watch",
"build": "tsup",
"test": "vitest run",
"test:legacy": "vitest run --config vitest.legacy.config.ts",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "prettier --check .",
"format": "prettier --write .",
"prepare": "npm run build",
"release": "npm run build && npm publish",
"netlify-build": "cd demo && npm install && npm run build"
},
"peerDependencies": {
"react": ">=16.8"
},
"dependencies": {
"@unlayer/types": "^1.448.0"
},
"devDependencies": {
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.1.10",
"jsdom": "^29.1.1",
"prettier": "^3.9.4",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
},
"author": "Unlayer",
"homepage": "https://github.com/unlayer/react-email-editor#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/unlayer/react-email-editor.git"
},
"keywords": [
"react",
"react-component",
"email",
"email-editor",
"email-builder",
"drag-and-drop",
"unlayer",
"wysiwyg"
]
}