promote-email-templates 0.0.2
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/.eslintrc.js +22 -0
- package/.prettierrc.json +7 -0
- package/dist/index.d.mts +467 -0
- package/dist/index.d.ts +467 -0
- package/dist/index.js +1123 -0
- package/dist/index.mjs +1068 -0
- package/package.json +32 -0
- package/readme.md +27 -0
package/package.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "promote-email-templates",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "Promote Email Templates",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"build": "email build",
|
|
10
|
+
"dev": "email dev",
|
|
11
|
+
"export": "email export",
|
|
12
|
+
"lint": "eslint --fix",
|
|
13
|
+
"build:tsup": "tsup"
|
|
14
|
+
},
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"@react-email/components": "0.0.15",
|
|
17
|
+
"react": "18.2.0",
|
|
18
|
+
"react-email": "2.1.0"
|
|
19
|
+
},
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@types/react": "18.2.33",
|
|
22
|
+
"@types/react-dom": "18.2.14",
|
|
23
|
+
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
24
|
+
"@typescript-eslint/parser": "^6.0.0",
|
|
25
|
+
"eslint": "^8.42.0",
|
|
26
|
+
"eslint-config-prettier": "^9.0.0",
|
|
27
|
+
"eslint-plugin-prettier": "^5.0.0",
|
|
28
|
+
"prettier": "3.0.3",
|
|
29
|
+
"tsup": "^8.0.2",
|
|
30
|
+
"typescript": "^5.4.5"
|
|
31
|
+
}
|
|
32
|
+
}
|
package/readme.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# React Email Starter
|
|
2
|
+
|
|
3
|
+
A live preview right in your browser so you don't need to keep sending real emails during development.
|
|
4
|
+
|
|
5
|
+
## Getting Started
|
|
6
|
+
|
|
7
|
+
First, install the dependencies:
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
npm install
|
|
11
|
+
# or
|
|
12
|
+
yarn
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Then, run the development server:
|
|
16
|
+
|
|
17
|
+
```sh
|
|
18
|
+
npm run dev
|
|
19
|
+
# or
|
|
20
|
+
yarn dev
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Open [localhost:3000](http://localhost:3000) with your browser to see the result.
|
|
24
|
+
|
|
25
|
+
## License
|
|
26
|
+
|
|
27
|
+
MIT License
|