-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
57 lines (57 loc) · 1.23 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
54
55
56
57
{
"name": "md-to-react-email",
"version": "5.0.4",
"description": "A simple Markdown to jsx parser for email templates written in typescript.",
"keywords": [
"markdown",
"react-email",
"jsx-email",
"md",
"email",
"jsx"
],
"repository": {
"type": "git",
"url": "https://github.com/codeskills-dev/md-to-react-email.git"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"lint": "tsc",
"release": "pnpm run build && changeset publish",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"author": {
"name": "Paul Ehikhuemen",
"url": "https://github.com/lordelogos",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@react-email/render": "0.0.7",
"@types/jest": "29.5.2",
"@types/react": "18.2.8",
"jest": "29.5.0",
"react": "18.2.0",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"tsup": "6.7.0",
"typescript": "5.1.3"
},
"peerDependencies": {
"react": "18.x"
},
"dependencies": {
"marked": "7.0.4"
},
"publishConfig": {
"access": "public"
}
}