payload-plugin-newsletter 0.6.2 → 0.7.1
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/CHANGELOG.md +48 -0
- package/README.md +143 -0
- package/dist/client.cjs +57 -65
- package/dist/client.cjs.map +1 -1
- package/dist/client.d.cts +7 -6
- package/dist/client.d.ts +7 -6
- package/dist/client.js +57 -65
- package/dist/client.js.map +1 -1
- package/dist/components.cjs +57 -65
- package/dist/components.cjs.map +1 -1
- package/dist/components.js +57 -65
- package/dist/components.js.map +1 -1
- package/dist/index.cjs +688 -67
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +67 -2
- package/dist/index.d.ts +67 -2
- package/dist/index.js +700 -66
- package/dist/index.js.map +1 -1
- package/package.json +11 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "payload-plugin-newsletter",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "Complete newsletter management plugin for Payload CMS with subscriber management, magic link authentication, and email service integration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -57,13 +57,13 @@
|
|
|
57
57
|
"clean": "rimraf dist",
|
|
58
58
|
"lint": "eslint src",
|
|
59
59
|
"typecheck": "tsc --noEmit",
|
|
60
|
-
"test": "
|
|
61
|
-
"test:unit": "
|
|
62
|
-
"test:integration": "
|
|
63
|
-
"test:security": "
|
|
64
|
-
"test:watch": "
|
|
65
|
-
"test:coverage": "
|
|
66
|
-
"test:ui": "
|
|
60
|
+
"test": "bunx vitest run",
|
|
61
|
+
"test:unit": "bunx vitest run",
|
|
62
|
+
"test:integration": "bunx vitest run --config vitest.integration.config.ts",
|
|
63
|
+
"test:security": "bunx vitest run --config vitest.integration.config.ts src/__tests__/security",
|
|
64
|
+
"test:watch": "bunx vitest watch",
|
|
65
|
+
"test:coverage": "bunx vitest run --coverage",
|
|
66
|
+
"test:ui": "bunx vitest --ui",
|
|
67
67
|
"generate:types": "tsc --emitDeclarationOnly --outDir dist",
|
|
68
68
|
"prepublishOnly": "bun run clean && bun run build",
|
|
69
69
|
"release:patch": "./scripts/release.sh patch",
|
|
@@ -104,7 +104,8 @@
|
|
|
104
104
|
"@payloadcms/richtext-lexical": "^3.0.0",
|
|
105
105
|
"@payloadcms/translations": "^3.0.0",
|
|
106
106
|
"@payloadcms/ui": "^3.0.0",
|
|
107
|
-
"@react-email/components": "^0.
|
|
107
|
+
"@react-email/components": "^0.1.1",
|
|
108
|
+
"@react-email/render": "^1.1.3",
|
|
108
109
|
"isomorphic-dompurify": "^2.25.0",
|
|
109
110
|
"jsonwebtoken": "^9.0.2",
|
|
110
111
|
"resend": "^4.0.0"
|
|
@@ -112,6 +113,7 @@
|
|
|
112
113
|
"devDependencies": {
|
|
113
114
|
"@eslint/js": "^9.29.0",
|
|
114
115
|
"@playwright/test": "^1.53.0",
|
|
116
|
+
"@rollup/rollup-linux-x64-gnu": "^4.44.1",
|
|
115
117
|
"@swc/cli": "^0.4.0",
|
|
116
118
|
"@swc/core": "^1.7.0",
|
|
117
119
|
"@testing-library/jest-dom": "^6.6.3",
|