forked from shellscape/jsx-email
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.13 KB
/
package.json
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
{
"name": "@jsx-email/markdown",
"version": "2.0.4",
"publishConfig": {
"access": "public"
},
"description": "A JSX email component which converts markdown input to valid HTML for email",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shellscape/jsx-email.git",
"directory": "packages/markdown"
},
"homepage": "https://jsx.email/docs/components/markdown",
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**"
],
"keywords": [
"react",
"email",
"markdown"
],
"peerDependencies": {
"react": "^18.2.0"
},
"dependencies": {
"md-to-react-email": "5.0.0"
},
"types": "dist/index.d.mts",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/shellscape"
},
"sideEffects": false
}