-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 833 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
{
"name": "effect-aws-api",
"version": "0.1.0",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"sideEffects": false,
"files": [
"/dist",
"/src"
],
"scripts": {
"prebuild": "rimraf -rf ./dist",
"build": "tsc",
"build:watch": "tsc -w",
"test": "vitest --reporter=verbose",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit -w"
},
"devDependencies": {
"@types/aws-lambda": "8.10.146",
"prettier": "3.4.1",
"rimraf": "6.0.1",
"type-fest": "4.29.0",
"typescript": "5.7.2",
"vitest": "2.1.6"
},
"dependencies": {
"@effect-aws/lambda": "1.2.0",
"@effect/platform": "0.69.31",
"aws-cdk-lib": "2.171.1",
"constructs": "10.4.2",
"effect": "3.10.19"
}
}