generated from domdomegg/typescript-library-template
-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.76 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.76 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
55
56
57
58
{
"name": "aws-ses-v2-local",
"version": "2.9.0",
"description": "A local version of Amazon Simple Email Service (AWS SES) supporting the V2 API",
"license": "MIT",
"author": "Adam Jones (domdomegg)",
"repository": {
"type": "git",
"url": "https://github.com/domdomegg/aws-ses-v2-local.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"aws-ses-v2-local": "dist/cli.js"
},
"files": [
"dist",
"static",
"branding"
],
"scripts": {
"start": "npm run build:watch & nodemon ./dist/cli.js",
"test": "vitest run && npm run test:binary_exists",
"test:binary_exists": "npm run prepublishOnly && node -e \"require('fs').access(require('./package.json').bin['aws-ses-v2-local'], (err) => process.exit(err ? 1 : 0))\"",
"test:watch": "vitest",
"lint": "eslint",
"format": "eslint --fix",
"clean": "rm -rf dist",
"build": "tsc --project tsconfig.build.json",
"build:watch": "npm run build -- --watch",
"prepublishOnly": "npm run clean && npm run build",
"build:docker": "docker build -t $DOCKER_IMAGE .",
"publish:docker": "docker push $DOCKER_IMAGE"
},
"devDependencies": {
"@aws-sdk/client-ses": "^3.828.0",
"@aws-sdk/client-sesv2": "^3.828.0",
"@tsconfig/node-lts": "^22.0.1",
"@types/express": "^4.17.23",
"@types/mailparser": "^3.4.6",
"@types/nodemailer": "^6.4.7",
"@types/yargs": "^17.0.33",
"axios": "^1.9.0",
"eslint": "^9.28.0",
"eslint-config-domdomegg": "^2.0.8",
"nodemon": "^3.1.10",
"tsconfig-domdomegg": "^1.0.0",
"typescript": "^5.8.3",
"vitest": "^3.2.3"
},
"dependencies": {
"express": "^4.18.2",
"mailparser": "^3.7.3",
"nodemailer": "^7.0.7",
"yargs": "^17.6.0",
"zod": "^3.25.63"
}
}