-
Notifications
You must be signed in to change notification settings - Fork 948
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 2.81 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 2.81 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@react-email/tailwind",
"version": "2.0.1",
"description": "A React component to wrap emails with Tailwind CSS",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"license": "MIT",
"scripts": {
"build": "tsdown",
"build:watch": "tsdown --watch",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest"
},
"repository": {
"type": "git",
"url": "https://github.com/resend/react-email.git",
"directory": "packages/tailwind"
},
"keywords": [
"react",
"email",
"tailwind"
],
"engines": {
"node": ">=22.0.0"
},
"peerDependencies": {
"react": "^18.0 || ^19.0 || ^19.0.0-rc",
"@react-email/body": "workspace:*",
"@react-email/button": "workspace:*",
"@react-email/code-block": "workspace:*",
"@react-email/code-inline": "workspace:*",
"@react-email/container": "workspace:*",
"@react-email/heading": "workspace:*",
"@react-email/hr": "workspace:*",
"@react-email/img": "workspace:*",
"@react-email/link": "workspace:*",
"@react-email/preview": "workspace:*",
"@react-email/text": "workspace:*"
},
"peerDependenciesMeta": {
"@react-email/button": {
"optional": true
},
"@react-email/body": {
"optional": true
},
"@react-email/code-block": {
"optional": true
},
"@react-email/code-inline": {
"optional": true
},
"@react-email/container": {
"optional": true
},
"@react-email/heading": {
"optional": true
},
"@react-email/hr": {
"optional": true
},
"@react-email/img": {
"optional": true
},
"@react-email/link": {
"optional": true
},
"@react-email/preview": {
"optional": true
}
},
"devDependencies": {
"@react-email/button": "workspace:^",
"@react-email/head": "workspace:*",
"@react-email/heading": "workspace:*",
"@react-email/hr": "workspace:*",
"@react-email/html": "workspace:*",
"@react-email/link": "workspace:*",
"@react-email/render": "workspace:*",
"@responsive-email/react-email": "0.0.4",
"@types/css-tree": "2.3.10",
"@types/shelljs": "0.8.15",
"@vitejs/plugin-react": "4.4.1",
"css-tree": "3.1.0",
"react-dom": "^19",
"shelljs": "0.9.2",
"tsconfig": "workspace:*",
"typescript": "5.8.3",
"vite": "6.3.6",
"vite-plugin-dts": "4.5.3",
"yalc": "1.0.0-pre.53"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"tailwindcss": "^4.1.12"
}
}