-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1001 Bytes
/
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
{
"name": "mini-workflow",
"version": "0.0.0",
"description": "",
"type": "module",
"exports": {
".": {
"require": "./lib/index.js",
"import": "./lib/index.mjs"
}
},
"scripts": {
"build": "tsc -b",
"test": "bun test"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"sst": "3.1.49",
"uuid": "^10.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@pulumi/aws": "^6.54.1",
"@pulumi/pulumi": "^3.134.1",
"@tsconfig/node20": "^20.1.4",
"@types/aws-lambda": "8.10.145",
"@types/bun": "^1.1.10",
"@types/node": "^22.7.4",
"@types/uuid": "^10.0.0",
"@types/yargs": "^17.0.33",
"bun": "^1.1.29",
"bun-types": "^1.1.29",
"typescript": "^5.6.2"
},
"optionalDependencies": {
"@aws-sdk/client-lambda": "^3.658.1",
"@aws-sdk/client-s3": "^3.658.1",
"@aws-sdk/client-scheduler": "^3.658.1",
"@aws-sdk/client-sqs": "^3.658.1"
}
}