-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.5 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
{
"name": "react-email-handlebars",
"version": "1.3.0",
"description": "Handlebars template support for React Email and JSX Email. Write templates once in React, generate Handlebars for dynamic rendering.",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/hautest/react-email-handlebars"
},
"keywords": [
"react",
"email",
"handlebars",
"jsx-email",
"react-email"
],
"homepage": "https://github.com/hautest/react-email-handlebars",
"bugs": {
"url": "https://github.com/hautest/react-email-handlebars/issues"
},
"license": "MIT",
"author": "dos07008@naver.com",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rslib build",
"check": "biome check --write",
"dev": "rslib build --watch",
"format": "biome format --write",
"test": "rstest"
},
"devDependencies": {
"@biomejs/biome": "2.3.2",
"@rsbuild/plugin-react": "^1.4.2",
"@rslib/core": "^0.18.1",
"@rstest/core": "^0.6.6",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.10.1",
"@types/react": "^19.2.6",
"jsdom": "^26.1.0",
"react": "^19.2.0",
"typescript": "^5.9.3"
},
"peerDependencies": {
"react": ">=19.0.0",
"react-dom": ">=19.0.0"
},
"dependencies": {
"zod": "^4.1.13"
}
}