-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 875 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 875 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
40
41
{
"name": "@ln80/cloudfront-toolkit",
"version": "0.1.0",
"private": false,
"main": "dist/lib/index.ts",
"types": "dist/lib/index.d.ts",
"bin": {
"ln80-deploy-site": "dist/bin/deploy-site.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"prepare": "npm run build"
},
"files": [
"lib",
"dist"
],
"engines": {
"node": ">=18"
},
"peerDependencies": {
"aws-cdk-lib": "2.205.0",
"constructs": "^10.0.0"
},
"dependencies": {
"@aws-sdk/client-cloudfront-keyvaluestore": "^3.922.0",
"@aws-sdk/client-s3": "^3.922.0",
"@aws-sdk/signature-v4a": "^3.921.0",
"commander": "^14.0.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "22.7.9",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.1",
"typescript": "~5.6.3"
}
}