-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.21 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.21 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
{
"name": "emdash-smtp-workspace",
"private": true,
"version": "0.3.3",
"type": "module",
"description": "Full-featured SMTP and transactional email plugin family for EmDash",
"packageManager": "pnpm@10.28.0",
"plugin": {
"id": "emdash-smtp"
},
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"typecheck": "pnpm -r typecheck",
"release:check": "pnpm install --frozen-lockfile && pnpm typecheck && pnpm test && pnpm build && pnpm validate:marketplace && pnpm bundle:marketplace",
"publish:npm": "node scripts/publish-npm-packages.mjs",
"deprecate:legacy": "node scripts/deprecate-legacy-npm-packages.mjs",
"validate:marketplace": "node scripts/run-marketplace-cli.mjs plugin validate --dir packages/emdash-smtp-marketplace",
"bundle:marketplace": "node scripts/run-marketplace-cli.mjs plugin bundle --dir packages/emdash-smtp-marketplace",
"publish:marketplace": "node scripts/run-marketplace-cli.mjs plugin publish --dir packages/emdash-smtp-marketplace --build"
},
"devDependencies": {
"@types/node": "^24.10.13",
"@types/nodemailer": "^6.4.17",
"emdash": "^0.1.0",
"tsdown": "^0.20.3",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}