@astralibx/email-rule-engine 12.11.0 → 14.0.0
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/README.md +26 -90
- package/dist/index.cjs +64 -2524
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +11 -866
- package/dist/index.d.ts +11 -866
- package/dist/index.mjs +57 -2489
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -10
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astralibx/email-rule-engine",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "14.0.0",
|
|
4
|
+
"description": "Email automation engine — thin wrapper over @astralibx/rule-engine with MJML rendering",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/Hariprakash1997/astralib.git",
|
|
@@ -44,30 +44,28 @@
|
|
|
44
44
|
],
|
|
45
45
|
"license": "MIT",
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@astralibx/
|
|
48
|
-
"handlebars": "^4.7.0",
|
|
47
|
+
"@astralibx/rule-engine": "*",
|
|
49
48
|
"html-to-text": "^9.0.0",
|
|
50
|
-
"mjml": "^4.0.0"
|
|
51
|
-
"zod": "^3.23.0"
|
|
49
|
+
"mjml": "^4.0.0"
|
|
52
50
|
},
|
|
53
51
|
"peerDependencies": {
|
|
54
|
-
"@astralibx/
|
|
52
|
+
"@astralibx/rule-engine": "^1.0.0",
|
|
55
53
|
"express": "^4.18.0 || ^5.0.0",
|
|
56
54
|
"ioredis": "^5.0.0",
|
|
57
55
|
"mongoose": "^7.0.0 || ^8.0.0"
|
|
58
56
|
},
|
|
59
57
|
"devDependencies": {
|
|
60
|
-
"@types/express": "^5.0.0",
|
|
61
58
|
"@types/html-to-text": "^9.0.4",
|
|
62
59
|
"@types/mjml": "^4.7.4",
|
|
63
60
|
"@types/node": "^22.0.0",
|
|
64
61
|
"@vitest/coverage-v8": "^3.0.0",
|
|
65
62
|
"express": "^5.0.0",
|
|
66
|
-
"handlebars": "^4.7.8",
|
|
67
63
|
"html-to-text": "^9.0.5",
|
|
68
64
|
"ioredis": "^5.4.2",
|
|
69
65
|
"mjml": "^4.15.3",
|
|
66
|
+
"mongodb-memory-server": "^10.0.0",
|
|
70
67
|
"mongoose": "^8.12.1",
|
|
71
|
-
"typescript": "^5.8.2"
|
|
68
|
+
"typescript": "^5.8.2",
|
|
69
|
+
"vitest": "^3.0.0"
|
|
72
70
|
}
|
|
73
71
|
}
|