-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.projenrc.js
74 lines (66 loc) · 2.06 KB
/
.projenrc.js
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
const { AwsCdkConstructLibrary } = require('projen/lib/awscdk');
const project = new AwsCdkConstructLibrary({
author: 'Sebastian Hesse',
authorAddress: '[email protected]',
cdkVersion: '2.105.0',
cdkVersionPinning: false,
defaultReleaseBranch: 'main',
jsiiFqn: 'projen.AwsCdkConstructLibrary',
name: 'ses-email-forwarding',
repositoryUrl: '[email protected]:seeebiii/ses-email-forwarding.git',
/* ConstructLibraryOptions */
catalog: {
twitter: '@seeebiii',
announce: true,
},
/* JsiiProjectOptions */
publishToMaven: {
javaPackage: 'de.sebastianhesse.cdk.ses.email.forwarding',
mavenGroupId: 'de.sebastianhesse.cdk-constructs',
mavenArtifactId: 'ses-email-forwarding',
},
publishToNuget: {
dotNetNamespace: 'SebastianHesse.CdkConstructs',
packageId: 'Ses.Email.Forwarding',
},
publishToPypi: {
distName: 'ses-email-forwarding',
module: 'ses_email_forwarding',
},
/* NodePackageOptions */
devDeps: ['esbuild', '@types/aws-lambda', 'jest@^29.7.0', '@types/jest@^29.5.8', 'ts-jest@^29.1.1'],
bundledDeps: ['aws-lambda-ses-forwarder', 'aws-sdk', 'aws-lambda', '@seeebiii/[email protected]'],
homepage: 'https://github.com/seeebiii/ses-email-forwarding',
keywords: ['aws',
'aws-cdk',
'aws ses',
'cdk-construct',
'email',
'email forwarding',
'gmail',
'cdk'],
license: 'MIT',
licensed: true,
packageName: '@seeebiii/ses-email-forwarding',
repository: 'https://github.com/seeebiii/ses-email-forwarding',
/* NodeProjectOptions */
antitamper: false,
copyrightOwner: 'Sebastian Hesse',
gitignore: ['.idea'],
tsconfigDev: {
compilerOptions: {
esModuleInterop: true,
allowJs: true,
outDir: 'lib',
noEmit: false,
noEmitOnError: false,
},
},
npmignore: ['.github'],
projenUpgradeAutoMerge: undefined,
releaseToNpm: true,
releaseWorkflow: true,
typescriptVersion: '^5.2.2',
});
project.compileTask.exec('esbuild src/lambda/index.ts --bundle --platform=node --target=node18 --outfile=lib/lambda/index.js');
project.synth();