-
Notifications
You must be signed in to change notification settings - Fork 0
/
.projenrc.js
25 lines (24 loc) · 1017 Bytes
/
.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
const { cdk8s } = require('projen');
const project = new cdk8s.ConstructLibraryCdk8s({
author: 'Hunter-Thompson',
authorAddress: 'aatman@auroville.org.in',
cdk8sVersion: '2.2.74',
constructsVersion: '10.0.5',
defaultReleaseBranch: 'main',
stability: 'experimental',
name: '@opencdk8s/cdk8s-secrets-store-csi-driver',
repositoryUrl: 'https://github.com/opencdk8s/cdk8s-secrets-store-csi-driver.git',
publishToGo: {
gitUserName: 'Hunter-Thompson',
gitUserEmail: 'aatman@auroville.org.in',
moduleName: 'github.com/opencdk8s/cdk8s-secrets-store-csi-driver-go',
},
npmAccess: 'public',
keywords: ['cdk8s'],
depsUpgrade: false,
// deps: [], /* Runtime dependencies of this module. */
// description: undefined, /* The description is just a string that helps people understand the purpose of the package. */
// devDeps: [], /* Build dependencies for this module. */
// packageName: undefined, /* The "name" in package.json. */
});
project.synth();