-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 727 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 727 Bytes
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
{
"name": "mailplex",
"version": "1.0.0",
"description": "Core email framework with DDD architecture",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"email",
"framework",
"typescript",
"ddd"
],
"author": "",
"license": "MIT",
"dependencies": {
"eta": "^3.5.0",
"h3": "^1.15.4",
"juice": "^11.0.1"
},
"devDependencies": {
"@types/node": "^18.0.0",
"tailwindcss": "^4.1.12",
"typescript": "^5.9.2"
},
"files": [
"dist/**/*",
"package.json",
"README.md"
]
}