strapi-plugin-brevo-template-sender 1.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.
@@ -0,0 +1,8 @@
1
+ # Assets pour le README
2
+
3
+ Fichiers utilisés dans le README (dossier `doc/`) :
4
+
5
+ | Fichier | Description |
6
+ | ------------ | ------------------------------------------------- |
7
+ | `logo.webp` | Logo du plugin ou logo Brevo (en-tête du README) |
8
+ | `demo.gif` | Démo animée du plugin (remplace les captures) |
package/doc/demo.gif ADDED
Binary file
package/doc/logo.webp ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,82 @@
1
+ {
2
+ "version": "1.0.0",
3
+ "keywords": [
4
+ "strapi",
5
+ "strapi-plugin",
6
+ "brevo",
7
+ "sendinblue",
8
+ "email",
9
+ "template",
10
+ "transactional"
11
+ ],
12
+ "type": "commonjs",
13
+ "exports": {
14
+ "./package.json": "./package.json",
15
+ "./strapi-admin": {
16
+ "types": "./dist/admin/src/index.d.ts",
17
+ "source": "./admin/src/index.ts",
18
+ "import": "./dist/admin/index.mjs",
19
+ "require": "./dist/admin/index.js",
20
+ "default": "./dist/admin/index.js"
21
+ },
22
+ "./strapi-server": {
23
+ "types": "./dist/server/src/index.d.ts",
24
+ "source": "./server/src/index.ts",
25
+ "import": "./dist/server/index.mjs",
26
+ "require": "./dist/server/index.js",
27
+ "default": "./dist/server/index.js"
28
+ }
29
+ },
30
+ "files": [
31
+ "dist",
32
+ "doc"
33
+ ],
34
+ "scripts": {
35
+ "prepublishOnly": "npm run build",
36
+ "build": "strapi-plugin build",
37
+ "watch": "strapi-plugin watch",
38
+ "watch:link": "strapi-plugin watch:link",
39
+ "verify": "strapi-plugin verify",
40
+ "test:ts:front": "run -T tsc -p admin/tsconfig.json",
41
+ "test:ts:back": "run -T tsc -p server/tsconfig.json"
42
+ },
43
+ "dependencies": {
44
+ "@strapi/design-system": "^2.0.0",
45
+ "@strapi/icons": "^2.0.0",
46
+ "react-intl": "^7.1.14"
47
+ },
48
+ "devDependencies": {
49
+ "@strapi/strapi": "5.33.0",
50
+ "@strapi/sdk-plugin": "^5.3.2",
51
+ "prettier": "^3.6.2",
52
+ "react": "^18.0.0",
53
+ "react-dom": "^18.0.0",
54
+ "react-router-dom": "^6.0.0",
55
+ "styled-components": "^6.0.0",
56
+ "@types/react": "^18",
57
+ "@types/react-dom": "^18",
58
+ "@strapi/typescript-utils": "5.33.0",
59
+ "typescript": "^5"
60
+ },
61
+ "peerDependencies": {
62
+ "@strapi/strapi": "^5.0.0",
63
+ "react": "^18.0.0",
64
+ "react-dom": "^18.0.0",
65
+ "react-router-dom": "^6.0.0",
66
+ "styled-components": "^6.0.0"
67
+ },
68
+ "strapi": {
69
+ "kind": "plugin",
70
+ "name": "brevo-template-sender",
71
+ "displayName": "Brevo Template Sender",
72
+ "description": "Configuration par content type et événement : envoi d’e-mails HTML via Brevo (Create, Update, Delete, Publish)"
73
+ },
74
+ "name": "strapi-plugin-brevo-template-sender",
75
+ "description": "HTML or Brevo template emails by content-type and event; send via Brevo",
76
+ "repository": {
77
+ "type": "git",
78
+ "url": "https://github.com/Dupflo/strapi-plugin-brevo-template-sender"
79
+ },
80
+ "license": "MIT",
81
+ "author": "Florian Dupuis"
82
+ }