-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 2.84 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@bifravst/aws-cdk-lambda-helpers",
"version": "0.0.0-development",
"description": "Helper functions which simplify working with TypeScript lambdas for AWS CDK.",
"exports": {
".": {
"import": {
"types": "./dist/src/lambda.d.ts",
"default": "./dist/src/lambda.js"
}
},
"./layer": {
"import": {
"types": "./dist/src/layer.d.ts",
"default": "./dist/src/layer.js"
}
},
"./util": {
"import": {
"types": "./dist/src/util.d.ts",
"default": "./dist/src/util.js"
}
},
"./cdk": {
"import": {
"types": "./dist/src/cdk.d.ts",
"default": "./dist/src/cdk.js"
}
}
},
"type": "module",
"scripts": {
"test": "tsx --no-warnings --test ./src/*.spec.ts",
"prepare": "husky",
"prepublishOnly": "npx tsc --noEmit false --outDir ./dist -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bifravst/aws-cdk-lambda-helpers.git"
},
"bugs": {
"url": "https://github.com/bifravst/aws-cdk-lambda-helpers/issues"
},
"homepage": "https://github.com/bifravst/aws-cdk-lambda-helpers",
"keywords": [
"aws",
"cdk",
"lambda",
"typescript"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"devDependencies": {
"@aws-sdk/client-cloudformation": "3.699.0",
"@aws-sdk/client-dynamodb": "3.699.0",
"@bifravst/cloudformation-helpers": "9.1.1",
"@bifravst/eslint-config-typescript": "6.1.19",
"@bifravst/from-env": "3.0.2",
"@bifravst/prettier-config": "1.1.3",
"@commitlint/config-conventional": "19.6.0",
"@types/aws-lambda": "8.10.146",
"@types/node": "22.10.1",
"@types/yazl": "2.4.5",
"cdk": "2.171.1",
"commitlint": "19.6.0",
"husky": "9.1.7",
"id128": "1.6.6",
"tsx": "4.19.2"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint"
],
"*.{md,json,yaml,yml}": [
"prettier --write"
]
},
"engines": {
"node": ">=22",
"npm": ">=10"
},
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"successCommentCondition": false,
"failTitle": false
}
]
]
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/src",
"LICENSE",
"README.md"
],
"prettier": "@bifravst/prettier-config",
"dependencies": {
"@swc/core": "1.9.3",
"fp-ts": "2.16.9",
"glob": "11.0.0",
"typescript": "5.7.2",
"yazl": "3.3.1"
},
"peerDependencies": {
"@bifravst/aws-ssm-settings-helpers": "^1.2.73",
"aws-cdk-lib": "^2.171.1",
"constructs": "^10.4.2"
}
}