@maestro-js/aws-cdk-recipes 1.0.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "@maestro-js/aws-cdk-recipes",
3
+ "description": "\"AWS CDK constructs for deploying common cloud infrastructure patterns including VPCs, databases, ECS Fargate services, Lambda functions, S3 buckets, static sites, and full-stack React Router SSR applications. Use when working with @maestro-js/aws-cdk-recipes, deploying Maestro-based apps to AWS, creating CDK stacks with VPC/ECS/Lambda/RDS/S3/CloudFront, or setting up React Router SSR on Lambda or ECS Fargate.\"",
4
+ "type": "module",
5
+ "exports": {
6
+ ".": {
7
+ "types": "./dist/index.d.ts",
8
+ "default": "./dist/index.js"
9
+ }
10
+ },
11
+ "dependencies": {
12
+ "constructs": "^10.4.2"
13
+ },
14
+ "peerDependencies": {
15
+ "aws-cdk-lib": "^2.178.0"
16
+ },
17
+ "devDependencies": {
18
+ "@types/node": "^22.0.0",
19
+ "aws-cdk-lib": "^2.178.0"
20
+ },
21
+ "version": "1.0.0-alpha.0",
22
+ "publishConfig": {
23
+ "access": "restricted"
24
+ },
25
+ "files": [
26
+ "dist"
27
+ ],
28
+ "license": "UNLICENSED",
29
+ "engines": {
30
+ "node": ">=22.18.0"
31
+ },
32
+ "repository": "https://github.com/Marcato-Partners/maestro-js",
33
+ "scripts": {
34
+ "build": "tsup --config ../../tsup.config.ts",
35
+ "watch": "tsup --config ../../tsup.config.ts --watch",
36
+ "typecheck": "tsc --noEmit"
37
+ }
38
+ }