-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
87 lines (87 loc) · 2.13 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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "cdk-ec2-key-pair",
"description": "CDK Construct for managing EC2 key pairs",
"version": "4.0.1",
"license": "Apache-2.0",
"author": {
"name": "Daniel Schroeder",
"url": "https://www.udondan.com/",
"twitter": "udondan"
},
"awscdkio": {
"twitter": "udondan"
},
"homepage": "https://github.com/udondan/cdk-ec2-key-pair",
"repository": {
"type": "git",
"url": "https://github.com/udondan/cdk-ec2-key-pair.git"
},
"bugs": {
"url": "https://github.com/udondan/cdk-ec2-key-pair/issues"
},
"keywords": [
"aws",
"cdk",
"aws-cdk",
"aws-cdk-construct",
"ec2",
"ec2-key-pair",
"cloudformation",
"cloudformation-custom-resource"
],
"stability": "stable",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "jsii",
"build:watch": "jsii -w",
"package": "jsii-pacmak",
"prepackage": "jsii && lambda/build"
},
"jsii": {
"excludeTypescript": [
"lambda"
],
"outdir": "dist",
"targets": {
"python": {
"distName": "cdk-ec2-key-pair",
"module": "cdk_ec2_key_pair"
},
"dotnet": {
"namespace": "CDK.EC2.KeyPair",
"packageId": "CDK.EC2.KeyPair"
}
}
},
"devDependencies": {
"@aws-sdk/client-ec2": "3.691.0",
"@aws-sdk/client-secrets-manager": "3.691.0",
"@swc/core": "1.9.2",
"@swc/helpers": "0.5.15",
"@types/node": "20.17.6",
"@types/node-forge": "1.3.11",
"@types/sshpk": "^1.17.4",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"aws-cdk-lib": "2.166.0",
"aws-cloudformation-custom-resource": "5.0.0",
"constructs": "10.3.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-deprecation": "3.0.0",
"eslint-plugin-prettier": "5.2.1",
"jsii": "5.6.0",
"jsii-pacmak": "1.103.1",
"node-forge": "1.3.1",
"prettier": "3.3.3",
"publib": "0.2.914",
"regenerator-runtime": "0.14.1",
"ts-node": "10.9.2",
"typescript": "5.6.3"
},
"peerDependencies": {
"aws-cdk-lib": "^2.116.0",
"constructs": "^10.0.0"
}
}