-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
58 lines (58 loc) · 1.42 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
58
{
"name": "md-to-react-email",
"version": "5.0.5",
"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": "vitest run --coverage",
"test:watch": "vitest"
},
"author": {
"name": "Paul Ehikhuemen",
"url": "https://github.com/lordelogos",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@react-email/render": "1.0.3",
"@types/react": "19.0.0",
"@vitest/coverage-v8": "2.1.8",
"happy-dom": "^15.11.7",
"react": "18.2.0",
"ts-node": "10.9.1",
"tsup": "6.7.0",
"typescript": "5.1.3",
"vitest": "2.1.8"
},
"peerDependencies": {
"react": "^18.0 || ^19.0"
},
"dependencies": {
"marked": "7.0.4"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]+sha512.6e2baf77d06b9362294152c851c4f278ede37ab1eba3a55fda317a4a17b209f4dbb973fb250a77abc463a341fcb1f17f17cfa24091c4eb319cda0d9b84278387"
}