-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.56 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
{
"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",
"typecheck": "tsc --noEmit -p tsconfig.typecheck.json",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:csp": "node --disallow-code-generation-from-strings scripts/csp-probe.mjs",
"test:e2e": "node scripts/browser-e2e.mjs",
"test:visual": "node scripts/storybook-visual.mjs",
"test-storybook": "test-storybook",
"test-storybook:ci": "concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"pnpm build-storybook --quiet && http-server storybook-static --port 6006 --silent\" \"wait-on tcp:127.0.0.1:6006 && pnpm test-storybook\""
},
"devDependencies": {
"@storybook/addon-docs": "^9.1.1",
"@storybook/addon-onboarding": "^9.1.1",
"@storybook/react-vite": "^9.1.1",
"@storybook/test-runner": "0.23.0",
"@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",
"concurrently": "9.2.1",
"http-server": "14.1.1",
"jsdom": "^24.1.3",
"playwright": "1.60.0",
"storybook": "^9.1.1",
"tsup": "^8.0.1",
"vitest": "^3.2.4",
"wait-on": "9.0.10"
}
}