-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.09 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.09 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
{
"version": "2.8.3",
"keywords": [
"strapi",
"strapi-plugin",
"strapi-v5",
"email",
"whatsapp",
"multi-account",
"smtp",
"nodemailer",
"email-routing",
"email-analytics",
"messaging"
],
"type": "commonjs",
"exports": {
"./package.json": "./package.json",
"./strapi-admin": {
"source": "./admin/src/index.js",
"import": "./dist/admin/index.mjs",
"require": "./dist/admin/index.js",
"default": "./dist/admin/index.js"
},
"./strapi-server": {
"source": "./server/src/index.js",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js",
"default": "./dist/server/index.js"
}
},
"files": [
"dist",
"strapi-admin.js",
"strapi-server.js",
"README.md",
"LICENSE",
"COPYRIGHT_NOTICE.txt",
"pics"
],
"scripts": {
"build": "strapi-plugin build",
"watch": "strapi-plugin watch",
"watch:link": "strapi-plugin watch:link",
"verify": "strapi-plugin verify",
"test": "node test-magic-mail.js --quick",
"test:full": "node test-magic-mail.js --full"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@strapi/design-system": "^2.1.2",
"@strapi/icons": "^2.1.2",
"baileys": "^7.0.0-rc.9",
"decode-html": "^2.0.0",
"form-data": "^4.0.4",
"html-to-text": "^9.0.5",
"mustache": "^4.2.0",
"nodemailer": "^8.0.1",
"pino": "^9.5.0",
"qrcode": "^1.5.4",
"react-email-editor": "^1.7.11",
"react-intl": "^7.1.14",
"striptags": "^3.2.0",
"yup": "^1.7.1"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.2",
"@semantic-release/npm": "^13.1.2",
"@semantic-release/release-notes-generator": "^14.0.1",
"@strapi/sdk-plugin": "^5.4.0",
"@strapi/strapi": "^5.36.0",
"prettier": "^3.6.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.1",
"semantic-release": "^24.2.3",
"styled-components": "^6.3.8"
},
"peerDependencies": {
"@strapi/sdk-plugin": "^5.4.0",
"@strapi/strapi": "^5.36.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.1",
"styled-components": "^6.3.8"
},
"overrides": {
"libsignal": "npm:@baileys-md/libsignal@2.0.1"
},
"strapi": {
"kind": "plugin",
"name": "magic-mail",
"displayName": "MagicMail - Email & WhatsApp Suite",
"description": "Multi-account email management with WhatsApp messaging, smart routing, failover, and analytics for Strapi v5"
},
"name": "strapi-plugin-magic-mail",
"description": "Multi-account email management with WhatsApp messaging, smart routing, failover, and analytics for Strapi v5",
"license": "MIT",
"author": "Schero D.",
"repository": {
"type": "git",
"url": "https://github.com/Schero94/Magic-Mail.git"
},
"bugs": {
"url": "https://github.com/Schero94/Magic-Mail/issues"
},
"homepage": "https://github.com/Schero94/Magic-Mail#readme",
"private": false
}