-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 976 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 976 Bytes
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
{
"name": "@birchill/bugsnag-zero-lambda-context",
"version": "0.8.2",
"description": "Bugsnag zero plugin for capturing AWS Lambda context",
"repository": {
"type": "git",
"url": "https://github.com/birchill/bugsnag-zero.git",
"directory": "packages/bugsnag-zero-lambda-context"
},
"author": "Birchill, Inc.",
"license": "MIT",
"scripts": {
"build": "tsdown"
},
"files": [
"dist/**",
"README.md"
],
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"homepage": "https://github.com/birchill/bugsnag-zero/tree/main/packages/bugsnag-zero-lambda-context#readme",
"dependencies": {
"@types/aws-lambda": "^8.10.160"
},
"peerDependencies": {
"@birchill/bugsnag-zero": "^0.8.1"
},
"devDependencies": {
"@birchill/bugsnag-zero": "workspace:*"
}
}