-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.38 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.38 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
59
60
{
"name": "cdk-aws-lambda-powertools-blueprint",
"description": "AWS CDK Blueprint to add AWS Lambda Powertools configuration to Lambda Functions.",
"version": "2.0.0",
"author": {
"name": "Miles Bardon",
"email": "milesbardon@gmail.com"
},
"repository": {
"url": "git+https://github.com/Tohaker/cdk-aws-lambda-powertools-blueprint.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/Tohaker/cdk-aws-lambda-powertools-blueprint/issues"
},
"license": "MIT",
"keywords": [
"awscdk",
"powertools",
"blueprint",
"lambda"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "jsii",
"watch": "jsii --watch",
"prepackage": "npm run build",
"package": "jsii-pacmak",
"prerelease": "npm run package",
"release": "publib",
"test": "vitest",
"lint": "biome check",
"lint:fix": "biome check --write",
"changeset": "changeset"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@changesets/cli": "2.29.8",
"@types/node": "25.7.0",
"aws-cdk-lib": "2.254.0",
"constructs": "10.6.0",
"jsii": "5.9.40",
"jsii-pacmak": "1.129.0",
"publib": "0.2.1046",
"typescript": "6.0.3",
"vitest": "4.1.6"
},
"peerDependencies": {
"aws-cdk-lib": "^2.196.0",
"constructs": "^10.0.0"
},
"stability": "stable",
"jsii": {
"targets": {},
"outdir": "./dist",
"versionFormat": "short",
"tsconfig": "tsconfig.build.json"
}
}