-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.05 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
{
"name": "@beesolve/lambda-bun-runtime",
"version": "0.0.0",
"description": "AWS Lambda Bun runtime layer and CDK constructs",
"keywords": [
"aws",
"awscdk",
"bun",
"cdk",
"lambda",
"runtime"
],
"license": "MIT",
"author": {
"name": "BeeSolve s.r.o.",
"email": "support@beesolve.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BeeSolve/lambda-bun-runtime"
},
"workspaces": [
"examples/sample-app"
],
"files": [
"dist/"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "bun command/build.ts",
"build:layer": "bun command/buildLayer.ts",
"check": "oxfmt --check && oxlint .",
"check:fix": "oxfmt && oxlint --fix .",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"lint": "oxlint .",
"test": "bun test",
"integ:deploy-test-destroy": "RUN_AWS_INTEG=1 bun test test/integration/deploy-destroy.test.ts",
"integ:cleanup": "bash -lc \"set -euo pipefail; stacks=$(aws cloudformation list-stacks --stack-status-filter CREATE_COMPLETE UPDATE_COMPLETE UPDATE_ROLLBACK_COMPLETE ROLLBACK_COMPLETE --query 'StackSummaries[].StackName' --output text); for stack in $stacks; do case \\\"$stack\\\" in BunLayerInteg-*) echo \\\"Destroying $stack\\\"; (cd examples/sample-app && INTEG_STACK_NAME=\\\"$stack\\\" bunx cdk destroy \\\"$stack\\\" --force);; esac; done\""
},
"devDependencies": {
"@aws-sdk/client-lambda": "3.1077.0",
"@aws-sdk/client-s3": "3.1077.0",
"@beesolve/lint-config": "0.2.4",
"@types/bun": "1.3.14",
"@types/node": "24.12.4",
"aws-cdk-lib": "2.238.0",
"constructs": "10.4.5",
"fast-check": "4.8.0",
"oxfmt": "0.57.0",
"oxlint": "1.72.0",
"oxlint-plugin-eslint": "1.72.0",
"typescript": "6.0.3"
},
"peerDependencies": {
"aws-cdk-lib": "^2.238.0",
"constructs": "^10.4.5"
}
}