@emailens/engine 0.11.6 → 0.11.7

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 CHANGED
@@ -1,128 +1,128 @@
1
- {
2
- "name": "@emailens/engine",
3
- "version": "0.11.6",
4
- "description": "Email compatibility engine for HTML, MJML, Maizzle and React Email: transforms CSS per email client, scores compatibility, simulates dark mode, suggests fixes, and runs spam, accessibility, link and image quality analysis.",
5
- "type": "module",
6
- "exports": {
7
- ".": {
8
- "types": "./dist/index.d.ts",
9
- "import": "./dist/index.js",
10
- "require": "./dist/index.cjs"
11
- },
12
- "./compile": {
13
- "types": "./dist/compile/index.d.ts",
14
- "import": "./dist/compile/index.js",
15
- "require": "./dist/compile/index.cjs"
16
- },
17
- "./server": {
18
- "types": "./dist/server.d.ts",
19
- "import": "./dist/server.js",
20
- "require": "./dist/server.cjs"
21
- }
22
- },
23
- "types": "./dist/index.d.ts",
24
- "sideEffects": false,
25
- "engines": {
26
- "node": ">=18"
27
- },
28
- "files": [
29
- "dist",
30
- "LICENSE"
31
- ],
32
- "scripts": {
33
- "build": "tsup",
34
- "dev": "tsup --watch",
35
- "typecheck": "tsc --noEmit",
36
- "sync:caniemail": "bun run scripts/sync-caniemail.ts",
37
- "sync:feature-urls": "bun run scripts/sync-feature-urls.ts",
38
- "check:freshness": "bun run scripts/check-data-freshness.ts",
39
- "bench:positions": "bun run scripts/bench-positions.ts",
40
- "test": "bun test",
41
- "test:render": "RENDER_TESTS=1 bun test src/__tests__/render.e2e.test.ts",
42
- "prepublishOnly": "bun run build"
43
- },
44
- "dependencies": {
45
- "cheerio": "^1.2.0",
46
- "css-tree": "^3.1.0"
47
- },
48
- "peerDependencies": {
49
- "@maizzle/framework": ">=5.0.0 <6.0.0",
50
- "@react-email/components": ">=0.0.36",
51
- "@react-email/render": ">=1.0.0",
52
- "isolated-vm": ">=5.0.0",
53
- "mjml": ">=4.0.0",
54
- "quickjs-emscripten": ">=0.29.0",
55
- "react": "^18.0.0 || ^19.0.0",
56
- "sucrase": "^3.35.0"
57
- },
58
- "peerDependenciesMeta": {
59
- "sucrase": {
60
- "optional": true
61
- },
62
- "react": {
63
- "optional": true
64
- },
65
- "@react-email/components": {
66
- "optional": true
67
- },
68
- "@react-email/render": {
69
- "optional": true
70
- },
71
- "mjml": {
72
- "optional": true
73
- },
74
- "@maizzle/framework": {
75
- "optional": true
76
- },
77
- "isolated-vm": {
78
- "optional": true
79
- },
80
- "quickjs-emscripten": {
81
- "optional": true
82
- }
83
- },
84
- "devDependencies": {
85
- "@maizzle/framework": "^5.5.0",
86
- "@react-email/components": "^1.0.12",
87
- "@react-email/render": "^2.1.0",
88
- "@types/bun": "^1.3.9",
89
- "@types/css-tree": "^2.3.11",
90
- "@types/mjml": "^5.0.0",
91
- "@types/node": "^25.3.0",
92
- "@types/react": "^19.2.14",
93
- "bun-types": "^1.3.9",
94
- "mjml": "^5.4.0",
95
- "playwright": "^1.62.0",
96
- "react": "^19.0.0",
97
- "sucrase": "^3.35.0",
98
- "tsup": "^8.4.0",
99
- "typescript": "^5.9.3"
100
- },
101
- "keywords": [
102
- "email",
103
- "html-email",
104
- "css",
105
- "compatibility",
106
- "gmail",
107
- "outlook",
108
- "apple-mail",
109
- "dark-mode",
110
- "email-testing",
111
- "spam-scoring",
112
- "accessibility",
113
- "link-validation",
114
- "image-analysis",
115
- "mjml",
116
- "maizzle",
117
- "react-email"
118
- ],
119
- "license": "MIT",
120
- "repository": {
121
- "type": "git",
122
- "url": "git+https://github.com/emailens/engine.git"
123
- },
124
- "homepage": "https://github.com/emailens/engine#readme",
125
- "bugs": {
126
- "url": "https://github.com/emailens/engine/issues"
127
- }
1
+ {
2
+ "name": "@emailens/engine",
3
+ "version": "0.11.7",
4
+ "description": "Email compatibility engine for HTML, MJML, Maizzle and React Email: transforms CSS per email client, scores compatibility, simulates dark mode, suggests fixes, and runs spam, accessibility, link and image quality analysis.",
5
+ "type": "module",
6
+ "exports": {
7
+ ".": {
8
+ "types": "./dist/index.d.ts",
9
+ "import": "./dist/index.js",
10
+ "require": "./dist/index.cjs"
11
+ },
12
+ "./compile": {
13
+ "types": "./dist/compile/index.d.ts",
14
+ "import": "./dist/compile/index.js",
15
+ "require": "./dist/compile/index.cjs"
16
+ },
17
+ "./server": {
18
+ "types": "./dist/server.d.ts",
19
+ "import": "./dist/server.js",
20
+ "require": "./dist/server.cjs"
21
+ }
22
+ },
23
+ "types": "./dist/index.d.ts",
24
+ "sideEffects": false,
25
+ "engines": {
26
+ "node": ">=18"
27
+ },
28
+ "files": [
29
+ "dist",
30
+ "LICENSE"
31
+ ],
32
+ "scripts": {
33
+ "build": "tsup",
34
+ "dev": "tsup --watch",
35
+ "typecheck": "tsc --noEmit",
36
+ "sync:caniemail": "bun run scripts/sync-caniemail.ts",
37
+ "sync:feature-urls": "bun run scripts/sync-feature-urls.ts",
38
+ "check:freshness": "bun run scripts/check-data-freshness.ts",
39
+ "bench:positions": "bun run scripts/bench-positions.ts",
40
+ "test": "bun test",
41
+ "test:render": "RENDER_TESTS=1 bun test src/__tests__/render.e2e.test.ts",
42
+ "prepublishOnly": "bun run build"
43
+ },
44
+ "dependencies": {
45
+ "cheerio": "^1.2.0",
46
+ "css-tree": "^3.1.0"
47
+ },
48
+ "peerDependencies": {
49
+ "@maizzle/framework": ">=5.0.0 <6.0.0",
50
+ "@react-email/components": ">=0.0.36",
51
+ "@react-email/render": ">=1.0.0",
52
+ "isolated-vm": ">=5.0.0",
53
+ "mjml": ">=4.0.0",
54
+ "quickjs-emscripten": ">=0.29.0",
55
+ "react": "^18.0.0 || ^19.0.0",
56
+ "sucrase": "^3.35.0"
57
+ },
58
+ "peerDependenciesMeta": {
59
+ "sucrase": {
60
+ "optional": true
61
+ },
62
+ "react": {
63
+ "optional": true
64
+ },
65
+ "@react-email/components": {
66
+ "optional": true
67
+ },
68
+ "@react-email/render": {
69
+ "optional": true
70
+ },
71
+ "mjml": {
72
+ "optional": true
73
+ },
74
+ "@maizzle/framework": {
75
+ "optional": true
76
+ },
77
+ "isolated-vm": {
78
+ "optional": true
79
+ },
80
+ "quickjs-emscripten": {
81
+ "optional": true
82
+ }
83
+ },
84
+ "devDependencies": {
85
+ "@maizzle/framework": "^5.5.0",
86
+ "@react-email/components": "^1.0.12",
87
+ "@react-email/render": "^2.1.0",
88
+ "@types/bun": "^1.3.9",
89
+ "@types/css-tree": "^2.3.11",
90
+ "@types/mjml": "^5.0.0",
91
+ "@types/node": "^25.3.0",
92
+ "@types/react": "^19.2.14",
93
+ "bun-types": "^1.3.9",
94
+ "mjml": "^5.4.0",
95
+ "playwright": "^1.62.0",
96
+ "react": "^19.0.0",
97
+ "sucrase": "^3.35.0",
98
+ "tsup": "^8.4.0",
99
+ "typescript": "^5.9.3"
100
+ },
101
+ "keywords": [
102
+ "email",
103
+ "html-email",
104
+ "css",
105
+ "compatibility",
106
+ "gmail",
107
+ "outlook",
108
+ "apple-mail",
109
+ "dark-mode",
110
+ "email-testing",
111
+ "spam-scoring",
112
+ "accessibility",
113
+ "link-validation",
114
+ "image-analysis",
115
+ "mjml",
116
+ "maizzle",
117
+ "react-email"
118
+ ],
119
+ "license": "MIT",
120
+ "repository": {
121
+ "type": "git",
122
+ "url": "git+https://github.com/emailens/engine.git"
123
+ },
124
+ "homepage": "https://github.com/emailens/engine#readme",
125
+ "bugs": {
126
+ "url": "https://github.com/emailens/engine/issues"
127
+ }
128
128
  }