-
Notifications
You must be signed in to change notification settings - Fork 955
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 842 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 842 Bytes
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
{
"name": "create-email",
"version": "1.2.2",
"description": "The easiest way to get started with React Email",
"main": "src/index.js",
"type": "module",
"license": "MIT",
"scripts": {
"test": "vitest run"
},
"dependencies": {
"commander": "^13.0.0",
"fs-extra": "^11.1.1",
"log-symbols": "^7.0.0",
"ora": "^8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/resend/react-email.git",
"directory": "packages/create-email"
},
"keywords": [
"react",
"email"
],
"engines": {
"node": ">=20.0.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=22.0.0"
}
},
"bin": {
"create-email": "src/index.js"
},
"devDependencies": {
"react": "19.0.0",
"tsconfig": "workspace:*",
"typescript": "5.8.3"
}
}