forked from hilarion5/send-mail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "send-mail",
"version": "1.0.0",
"description": "Action to send Mails via AWS SES",
"main": "index.js",
"scripts": {
"build": "ncc build src/index.ts --license licenses.txt",
"test": "echo \"Error: no test specified\" && exit 1",
"format:write": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/hilarion5/send-mail.git"
},
"author": "Andreas Rainer",
"license": "MIT",
"bugs": {
"url": "https://github.com/hilarion5/send-mail/issues"
},
"homepage": "https://github.com/hilarion5/send-mail#readme",
"keywords": [
"actions",
"node",
"aws",
"ses"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@types/nodemailer": "^6.4.13",
"nodemailer": "^6.9.7"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}