-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
72 lines (72 loc) · 1.61 KB
/
package.json
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
{
"version": "0.4.0",
"description": "Display e-mail messages in your React projects.",
"exports": {
".": {
"require": "./dist/react-letter.cjs",
"import": "./dist/react-letter.js",
"types": "./dist/index.d.ts"
}
},
"type": "module",
"main": "dist/react-letter.cjs",
"module": "dist/react-letter.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "vite build",
"test": "vitest",
"lint": "eslint src",
"prepare": "vite build"
},
"peerDependencies": {
"react": ">=16"
},
"repository": {
"type": "git",
"url": "https://github.com/mat-sz/react-letter.git"
},
"bugs": {
"url": "https://github.com/mat-sz/react-letter/issues"
},
"homepage": "https://github.com/mat-sz/react-letter",
"name": "react-letter",
"author": "Mat Sz <contact@matsz.dev>",
"license": "BSD-3-Clause-Clear",
"keywords": [
"react",
"react-component",
"email",
"e-mail",
"mail",
"mime-message",
"typescript",
"ui"
],
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.4",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@types/jest": "^28.1.3",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@vitejs/plugin-react": "^4.1.0",
"husky": "^8.0.1",
"jsdom": "^22.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitest": "^0.34.5"
},
"dependencies": {
"lettersanitizer": "^1.0.2"
}
}