-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.91 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.91 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
{
"name": "@unlayer/react-elements",
"version": "0.1.1",
"description": "React components for building emails, pages, and documents with Unlayer Elements",
"license": "MIT",
"author": "Unlayer",
"repository": {
"type": "git",
"url": "git+https://github.com/unlayer/elements.git",
"directory": "packages/react"
},
"homepage": "https://github.com/unlayer/elements",
"keywords": [
"email",
"react-email",
"email-components",
"html-email",
"email-templates",
"react-components",
"email-builder",
"server-components",
"ssr",
"unlayer"
],
"sideEffects": false,
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"dependencies": {
"@unlayer/exporters": "catalog:",
"@unlayer/types": "catalog:"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest",
"test:coverage": "vitest --coverage"
},
"devDependencies": {
"@storybook/addon-docs": "^9.1.1",
"@storybook/addon-onboarding": "^9.1.1",
"@storybook/react-vite": "^9.1.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.0.0",
"@types/node": "^24.9.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@unlayer-internal/shared-elements": "workspace:*",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/coverage-v8": "^3.2.4",
"jsdom": "^24.1.3",
"storybook": "^9.1.1",
"tsup": "^8.0.1",
"vitest": "^3.2.4"
}
}