-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.02 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@nrfcloud/lambda-helpers",
"version": "0.0.0-development",
"description": "Helper functions for AWS Lambda functions used in nRF Cloud.",
"homepage": "https://github.com/nRFCloud/lambda-helpers#readme",
"bugs": {
"url": "https://github.com/nRFCloud/lambda-helpers/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nRFCloud/lambda-helpers.git"
},
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"scripts": {
"test": "node --no-warnings --experimental-transform-types --test \"./*.spec.ts\" \"./.npm/*.spec.ts\"",
"prepublishOnly": "node --experimental-strip-types ./.npm/compile.ts && npx tsc -P ./.npm/tsconfig.npm.json --outDir ./npm"
},
"license": "BSD-3-Clause",
"type": "module",
"exports": {
".": {
"import": {
"types": "./npm/export.d.ts",
"default": "./npm/export.js"
}
}
},
"files": [
"npm",
"README.md"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@bifravst/prettier-config": "1.1.17",
"@swc/core": "1.15.47",
"@types/aws-lambda": "8.10.162",
"@types/node": "25.9.5",
"@typescript/native": "npm:typescript@7.0.2",
"prettier": "3.9.6",
"typescript": "npm:@typescript/typescript6@6.0.2"
},
"prettier": "@bifravst/prettier-config",
"release": {
"branches": [
"main"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"successCommentCondition": false,
"failCommentCondition": false
}
]
]
},
"engines": {
"node": ">=24.18.1 <25",
"npm": ">=12.0.2 <13"
},
"dependencies": {
"@aws-lambda-powertools/metrics": "2.34.0",
"@middy/core": "7.7.2",
"@middy/input-output-logger": "7.7.2",
"@nrfcloud/problem-detail": "1.4.4",
"@nrfcloud/validate-with-typebox": "1.0.6",
"@sinclair/typebox": "0.34.52"
}
}