mailery 0.1.1 → 0.2.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 +4 -4
- package/dist/admin/spa/{index-DnPQRmZe.js → index-DlhleV6M.js} +2 -2
- package/dist/admin/spa/{index-DnPQRmZe.js.map → index-DlhleV6M.js.map} +1 -1
- package/dist/admin/spa/index.html +1 -1
- package/dist/admin/spa/{template-editor-DFGyqPn3.js → template-editor-DUZfzI5F.js} +65 -65
- package/dist/admin/spa/{template-editor-DFGyqPn3.js.map → template-editor-DUZfzI5F.js.map} +1 -1
- package/dist/index.cjs +348 -131
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +59 -5
- package/dist/index.d.ts +59 -5
- package/dist/index.js +342 -132
- package/dist/index.js.map +1 -1
- package/dist/{null-sygex0Ru.d.cts → null-CWw3Gpbl.d.cts} +66 -44
- package/dist/{null-sygex0Ru.d.ts → null-CWw3Gpbl.d.ts} +66 -44
- package/dist/testing.cjs +346 -136
- package/dist/testing.cjs.map +1 -1
- package/dist/testing.d.cts +3 -3
- package/dist/testing.d.ts +3 -3
- package/dist/testing.js +346 -136
- package/dist/testing.js.map +1 -1
- package/package.json +33 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mailery",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Embedded, MongoDB-backed email automation for Node.js. Triggered flows, broadcasts, tracking, suppression, and an admin UI you mount inside your Express app.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Jeff Jassky <jeff@jeffjassky.com>",
|
|
@@ -56,6 +56,8 @@
|
|
|
56
56
|
"dev:client": "vite --config src/client/vite.config.ts",
|
|
57
57
|
"test": "vitest run",
|
|
58
58
|
"test:watch": "vitest",
|
|
59
|
+
"test:e2e": "playwright test",
|
|
60
|
+
"test:e2e:ui": "playwright test --ui",
|
|
59
61
|
"typecheck": "tsc --noEmit && tsc -p src/client/tsconfig.json",
|
|
60
62
|
"clean": "rm -rf dist coverage",
|
|
61
63
|
"prepublishOnly": "yarn clean && yarn typecheck && yarn test && yarn build",
|
|
@@ -64,9 +66,33 @@
|
|
|
64
66
|
"docs:preview": "vitepress preview docs"
|
|
65
67
|
},
|
|
66
68
|
"peerDependencies": {
|
|
67
|
-
"
|
|
69
|
+
"@agendajs/mongo-backend": "^4.0.0",
|
|
70
|
+
"agenda": "^6.2.0",
|
|
71
|
+
"bottleneck": "^2.19.5",
|
|
72
|
+
"bullmq": "^5.0.0",
|
|
73
|
+
"express": "^4.18.0 || ^5.0.0",
|
|
74
|
+
"ioredis": "^5.0.0"
|
|
75
|
+
},
|
|
76
|
+
"peerDependenciesMeta": {
|
|
77
|
+
"@agendajs/mongo-backend": {
|
|
78
|
+
"optional": true
|
|
79
|
+
},
|
|
80
|
+
"agenda": {
|
|
81
|
+
"optional": true
|
|
82
|
+
},
|
|
83
|
+
"bottleneck": {
|
|
84
|
+
"optional": true
|
|
85
|
+
},
|
|
86
|
+
"bullmq": {
|
|
87
|
+
"optional": true
|
|
88
|
+
},
|
|
89
|
+
"ioredis": {
|
|
90
|
+
"optional": true
|
|
91
|
+
}
|
|
68
92
|
},
|
|
69
93
|
"devDependencies": {
|
|
94
|
+
"@agendajs/mongo-backend": "^4.0.2",
|
|
95
|
+
"@playwright/test": "^1.60.0",
|
|
70
96
|
"@types/express": "^5.0.6",
|
|
71
97
|
"@types/html-to-text": "^9.0.4",
|
|
72
98
|
"@types/ioredis-mock": "^8.2.7",
|
|
@@ -76,12 +102,17 @@
|
|
|
76
102
|
"@types/react": "^18.3.0",
|
|
77
103
|
"@types/react-dom": "^18.3.0",
|
|
78
104
|
"@vitejs/plugin-react": "^4.3.0",
|
|
105
|
+
"agenda": "^6.2.5",
|
|
106
|
+
"bottleneck": "^2.19.5",
|
|
107
|
+
"bullmq": "^5.76.7",
|
|
79
108
|
"express": "^5.2.1",
|
|
109
|
+
"ioredis": "^5.10.1",
|
|
80
110
|
"ioredis-mock": "^8.13.1",
|
|
81
111
|
"mongodb-memory-server": "^11.1.0",
|
|
82
112
|
"react": "^18.3.0",
|
|
83
113
|
"react-dom": "^18.3.0",
|
|
84
114
|
"tsup": "^8.3.0",
|
|
115
|
+
"tsx": "^4.21.0",
|
|
85
116
|
"typescript": "^5.6.0",
|
|
86
117
|
"vite": "^5.4.0",
|
|
87
118
|
"vitepress": "^1.4.0",
|
|
@@ -94,10 +125,8 @@
|
|
|
94
125
|
"@maily-to/core": "^0.3.7",
|
|
95
126
|
"@maily-to/render": "^0.2.3",
|
|
96
127
|
"@sendgrid/mail": "^8.1.6",
|
|
97
|
-
"bullmq": "^5.76.7",
|
|
98
128
|
"handlebars": "^4.7.9",
|
|
99
129
|
"html-to-text": "^10.0.0",
|
|
100
|
-
"ioredis": "^5.10.1",
|
|
101
130
|
"mjml": "^5.2.0",
|
|
102
131
|
"mongodb": "^7.2.0",
|
|
103
132
|
"y-protocols": "^1.0.7",
|