-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.39 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.39 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
{
"name": "@adaptivestone/framework-module-email",
"version": "1.1.0",
"description": "Adaptive stone node js framework module email",
"main": "./dist/index.js",
"type": "module",
"engines": {
"node": ">=22.7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adaptivestone/framework-module-email.git"
},
"homepage": "https://framework.adaptivestone.com/docs/email",
"keywords": [
"node",
"email",
"framework",
"adaptivestone",
"framework-module-email",
"nodemailer"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "node preBuild.ts && tsc && node postBuild.ts",
"types:check": "tsc --noEmit",
"check": "biome check",
"check:fix": "biome check --write",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm"
},
"files": [
"dist"
],
"author": "Andrei Lahunou",
"license": "MIT",
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@biomejs/biome": "^2.4.9",
"@types/html-to-text": "^9.0.4",
"@types/node": "^25.0.0",
"@types/nodemailer": "^7.0.0",
"@types/nodemailer-stub-transport": "^1.1.8",
"@types/pug": "^2.0.10",
"typescript": "^6.0.0"
},
"dependencies": {
"deepmerge": "^4.3.1",
"html-to-text": "^9.0.5",
"juice": "^11.0.0",
"nodemailer": "^8.0.4",
"nodemailer-stub-transport": "^1.1.0",
"pug": "^3.0.3"
}
}