-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 2.85 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 2.85 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@emailens/engine",
"version": "0.9.0",
"description": "Email compatibility engine — transforms CSS per email client, scores compatibility, simulates dark mode, suggests fixes, and runs spam, accessibility, link, and image quality analysis.",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./compile": {
"types": "./dist/compile/index.d.ts",
"import": "./dist/compile/index.js",
"require": "./dist/compile/index.cjs"
},
"./server": {
"types": "./dist/server.d.ts",
"import": "./dist/server.js",
"require": "./dist/server.cjs"
}
},
"types": "./dist/index.d.ts",
"sideEffects": false,
"engines": {
"node": ">=18"
},
"files": [
"dist",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"sync:caniemail": "bun run scripts/sync-caniemail.ts",
"check:freshness": "bun run scripts/check-data-freshness.ts",
"test": "bun test",
"prepublishOnly": "bun run build"
},
"dependencies": {
"cheerio": "^1.2.0",
"css-tree": "^3.1.0"
},
"peerDependencies": {
"@maizzle/framework": ">=5.0.0",
"@react-email/components": ">=0.0.36",
"@react-email/render": ">=1.0.0",
"isolated-vm": ">=5.0.0",
"mjml": ">=4.0.0",
"quickjs-emscripten": ">=0.29.0",
"react": "^18.0.0 || ^19.0.0",
"sucrase": "^3.35.0"
},
"peerDependenciesMeta": {
"sucrase": {
"optional": true
},
"react": {
"optional": true
},
"@react-email/components": {
"optional": true
},
"@react-email/render": {
"optional": true
},
"mjml": {
"optional": true
},
"@maizzle/framework": {
"optional": true
},
"isolated-vm": {
"optional": true
},
"quickjs-emscripten": {
"optional": true
}
},
"devDependencies": {
"@maizzle/framework": "^5.0.0",
"@react-email/components": "^0.0.36",
"@react-email/render": "^1.0.6",
"@types/bun": "^1.3.9",
"@types/css-tree": "^2.3.11",
"@types/mjml": "^4.7.4",
"@types/node": "^25.3.0",
"@types/react": "^19.2.14",
"bun-types": "^1.3.9",
"mjml": "^4.15.0",
"react": "^19.0.0",
"sucrase": "^3.35.0",
"tsup": "^8.4.0",
"typescript": "^5.9.3"
},
"keywords": [
"email",
"html-email",
"css",
"compatibility",
"gmail",
"outlook",
"apple-mail",
"dark-mode",
"email-testing",
"spam-scoring",
"accessibility",
"link-validation",
"image-analysis"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/emailens/engine.git"
},
"homepage": "https://github.com/emailens/engine#readme",
"bugs": {
"url": "https://github.com/emailens/engine/issues"
}
}