-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.08 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.08 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
{
"name": "@sitblueprint/website-construct",
"version": "0.1.9",
"description": "A reusable AWS CDK construct for deploying static websites with optional custom domain support.",
"author": "Miguel Merlin <mmerlin@stevens.edu>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/stevensblueprint/website-construct.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"aws",
"cdk",
"construct",
"s3",
"cloudfront",
"route53",
"static-website"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"format:check": "prettier --check .",
"format:write": "prettier --write ."
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "24.10.1",
"aws-cdk-lib": "2.237.1",
"constructs": "^10.0.0",
"jest": "^29.7.0",
"prettier": "^3.6.2",
"ts-jest": "^29.2.5",
"typescript": "~5.9.3"
},
"peerDependencies": {
"aws-cdk-lib": "^2.0.0",
"constructs": "^10.0.0"
}
}