-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.03 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
{
"name": "email-viewer",
"version": "1.1.1",
"license": "MIT",
"author": "OreQr",
"description": "📧Opens browser with email preview",
"repository": {
"url": "https://github.com/OreQr/email-viewer"
},
"keywords": [
"nodejs",
"automation",
"mail",
"viewer",
"email",
"mailer",
"smtp",
"devtool",
"nodemailer",
"preview"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"lint": "tsc",
"format:check": "prettier --check . --cache",
"format:write": "prettier --write . --cache",
"test": "vitest",
"test:open": "cross-env OPEN=true vitest"
},
"dependencies": {
"ejs": "^3.1.10",
"open": "^10.1.0"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/node": "^22.9.0",
"cross-env": "^7.0.3",
"prettier": "^3.3.2",
"tsup": "^8.1.0",
"typescript": "^5.5.2",
"vite-tsconfig-paths": "^5.1.1",
"vitest": "^2.1.4"
},
"packageManager": "[email protected]"
}